diff options
Diffstat (limited to 'repo/chrpath/chrpath.xibuild')
-rw-r--r-- | repo/chrpath/chrpath.xibuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/repo/chrpath/chrpath.xibuild b/repo/chrpath/chrpath.xibuild new file mode 100644 index 0000000..591292b --- /dev/null +++ b/repo/chrpath/chrpath.xibuild @@ -0,0 +1,32 @@ +#!/bin/sh + +NAME="chrpath" +DESC="Modify rpath of compiled programs" + +MAKEDEPS="" + +PKG_VER=0.16 +SOURCE="https://alioth-archive.debian.org/releases/chrpath/chrpath/$PKG_VER/chrpath-$PKG_VER.tar.gz" + +build() { + cd "$BUILD_ROOT" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var + make +} + +check() { + cd "$BUILD_ROOT" + make check +} + +package() { + cd "$BUILD_ROOT" + make DESTDIR="$PKG_DEST" docdir=/usr/share/doc/chrpath-$PKG_VER \ + install +} + |