-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:seamplex/feenox
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ if [ -e src/feenox-${version}.tar.gz ]; then | |
cp src/feenox-${version}.tar.gz . | ||
else | ||
wget https://seamplex.com/feenox/dist/src/feenox-${version}.tar.gz | ||
cp feenox-${version}.tar.gz src | ||
fi | ||
|
||
rm -rf feenox-${version} | ||
|
@@ -18,10 +19,27 @@ debmake | |
cp ../README.Debian ../control ../copyright ../rules ../watch debian/ | ||
cp ../metadata debian/upstream | ||
m4 -Dfeenox_version=${version} ../changelog > debian/changelog | ||
rm -f debian/source/control debian/tests/control debian/patches/series debian/source/local-options debian/source/options debian/source/patch-header | ||
rmdir debian/patches | ||
rm -f debian/source/control \ | ||
debian/tests/control \ | ||
debian/patches/series \ | ||
debian/source/local-options \ | ||
debian/source/options \ | ||
debian/source/patch-header \ | ||
debian/*.ex \ | ||
debian/source/*.ex \ | ||
debian/clean \ | ||
debian/dirs \ | ||
debian/gbp.conf \ | ||
debian/install \ | ||
debian/links | ||
rmdir debian/patches debian/tests | ||
rm -f COPYING debian/feenox/usr/share/doc/feenox/COPYRIGHT.gz | ||
|
||
# copy the debian directory to dist | ||
rm -rf ../debian | ||
cp -r debian .. | ||
exit | ||
|
||
export DEBEMAIL="[email protected]" | ||
export DEBFULLNAME="Jeremy Theler" | ||
export DEBUILD_DPKG_BUILDPACKAGE_OPTS="-i -I -us -uc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters