Changes between Version 15 and Version 16 of Packaging
- Timestamp:
- 08/06/14 05:06:22 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Packaging
v15 v16 44 44 The spec file can be found here: [https://www.xpra.org/trac/browser/trunk/scripts/xpra.spec xpra.spec] 45 45 [[BR]] 46 The quick and easy way (tested on Fedora 18):46 The quick and easy way (tested on Fedora 20): 47 47 {{{ 48 48 mkdir -p ${HOME}/rpmbuild/SOURCES/ >& /dev/null 49 49 cd trunk/src 50 ./setup.py sdist 51 cp dist/ parti-all-*.tar.gz${HOME}/rpmbuild/SOURCES/50 ./setup.py sdist --formats=bztar 51 cp dist/*bz2 ${HOME}/rpmbuild/SOURCES/ 52 52 cp patches/* ${HOME}/rpmbuild/SOURCES/ 53 rpmbuild -ba ../ scripts/xpra.spec --define 'Fedora 1'53 rpmbuild -ba ../rpmbuild/xpra.spec --define 'Fedora 1' 54 54 ls -s ${HOME}/rpmbuild/RPMS/*/ 55 55 }}} 56 56 Shows: 57 57 {{{ 58 1 744 xpra-0.8.0-0.fc18.x86_64.rpm58 1904 xpra-0.14.0-0.fc20.x86_64.rpm 2332 xpra-debuginfo-0.14.0-0.fc20.x86_64.rpm 59 59 }}} 60 60 … … 71 71 --define 'opengl 0' 72 72 }}} 73 (the flags and their purpose may vary with versions, please refer to the spec file for more definitive information) 73 74 }}} 74 75