diff options
Diffstat (limited to 'pkg++/Pkgfile')
-rw-r--r-- | pkg++/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg++/Pkgfile b/pkg++/Pkgfile new file mode 100644 index 0000000..5a6c237 --- /dev/null +++ b/pkg++/Pkgfile @@ -0,0 +1,21 @@ +description="Portable package builder." +url=http://devel.upyum.com/cgit.cgi/pkg++ +packager="Lukc <lukc AT upyum DOT com>" +maintainer="Lukc <lukc AT upyum DOT com>" + +name=pkg++ +version=devel +release=1 +source=( + git://devel.upyum.com/pkgxx.git +) + +depends=(bash pkgutils) + +build(){ + cd $name + ./configure \ + --package-manager=pkgutils \ + ${configure_opts[@]} + pkgmake -B DESTDIR=$PKG install +} |