diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-06 23:22:45 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-06 23:22:45 +0100 |
commit | 3c4677f7a97f9290c091293d128574dd738e0b6b (patch) | |
tree | 20a154970e77beaac993983057ea8e3a762e766e /base | |
parent | a2dfab7847a72b491d7d929713bdb303f1c6e067 (diff) | |
download | nutyx-pakxe-3c4677f7a97f9290c091293d128574dd738e0b6b.tar.gz nutyx-pakxe-3c4677f7a97f9290c091293d128574dd738e0b6b.tar.bz2 nutyx-pakxe-3c4677f7a97f9290c091293d128574dd738e0b6b.tar.xz nutyx-pakxe-3c4677f7a97f9290c091293d128574dd738e0b6b.zip |
libixp, déplacé dans base
Diffstat (limited to 'base')
-rw-r--r-- | base/libixp/.footprint | 19 | ||||
-rw-r--r-- | base/libixp/.md5sum | 1 | ||||
-rwxr-xr-x | base/libixp/Pkgfile | 27 |
3 files changed, 47 insertions, 0 deletions
diff --git a/base/libixp/.footprint b/base/libixp/.footprint new file mode 100644 index 000000000..207ed2077 --- /dev/null +++ b/base/libixp/.footprint @@ -0,0 +1,19 @@ +drwxr-xr-x root/root pkg/ +drwxr-xr-x root/root pkg/usr/ +drwxr-xr-x root/root pkg/usr/bin/ +-rwxr-xr-x root/root pkg/usr/bin/ixpc +drwxr-xr-x root/root pkg/usr/include/ +-rw-r--r-- root/root pkg/usr/include/ixp.h +-rw-r--r-- root/root pkg/usr/include/ixp_srvutil.h +drwxr-xr-x root/root pkg/usr/lib/ +-rw-r--r-- root/root pkg/usr/lib/libixp.a +-rw-r--r-- root/root pkg/usr/lib/libixp_pthread.a +drwxr-xr-x root/root pkg/usr/share/ +drwxr-xr-x root/root pkg/usr/share/man/ +drwxr-xr-x root/root pkg/usr/share/man/man1/ +-rw-r--r-- root/root pkg/usr/share/man/man1/ixpc.1.gz +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/licenses/ +drwxr-xr-x root/root usr/share/licenses/libixp/ +-rw-r--r-- root/root usr/share/licenses/libixp/LICENSE diff --git a/base/libixp/.md5sum b/base/libixp/.md5sum new file mode 100644 index 000000000..804f2e9a3 --- /dev/null +++ b/base/libixp/.md5sum @@ -0,0 +1 @@ +2a394310c209605ba54ecf5eab518bff libixp-0.5.tar.gz diff --git a/base/libixp/Pkgfile b/base/libixp/Pkgfile new file mode 100755 index 000000000..eae1577d4 --- /dev/null +++ b/base/libixp/Pkgfile @@ -0,0 +1,27 @@ +# Description:A standalone client/server 9p library +# URL:http://www.suckless.org/libs/libixp.html +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr + +name=libixp +version=0.5 +release=1 +source=(http://code.suckless.org/dl/libs/$name-$version.tar.gz) +build() { + cd $name-$version + sed -i \ + -e "/^PREFIX/s|=.*|= $PKG/pkg/usr|" \ + -e "/^ ETC/s|=.*|= $PKG}/pkg/etc|" \ + -e "/^CFLAGS/s|=|+=|" \ + -e "/^LDFLAGS/s|=|+=|" \ + config.mk || return 1 + + make || return 1 + make DESTDIR=$PKG install || return 1 + + install -m644 -D ./libixp/LICENSE \ + $PKG/usr/share/licenses/libixp/LICENSE + +} + + |