summaryrefslogtreecommitdiffstats
path: root/pkgutils/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'pkgutils/Pkgfile')
-rw-r--r--pkgutils/Pkgfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgutils/Pkgfile b/pkgutils/Pkgfile
new file mode 100644
index 0000000..74d4c15
--- /dev/null
+++ b/pkgutils/Pkgfile
@@ -0,0 +1,19 @@
+description="A set of utilities to manage software packages"
+packager="CRUX System Team (SMTP: core-ports AT crux DOT nu)"
+maintainer="Lukc (XMPP/SMTP: lukc AT upyum DOT com)"
+url=http://www.fukt.bsnet.se/~per/pkgutils/
+depends=(libarchive)
+
+name=pkgutils
+version=5.35.1
+release=1
+source=(http://crux.nu/files/$name-$version.tar.gz)
+build ()
+{
+ cd $name-$version;
+ make DESTDIR=$PKG install
+ if [[ "$mandir" != "/usr/man" ]]; then
+ mkdir -p $PKG/${mandir%/*}
+ mv $PKG/usr/man $PKG/$mandir
+ fi
+}