From: Victor Martinez Date: Thu, 23 Sep 2010 09:22:12 +0000 (+0000) Subject: portdbc: initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=a6cf3f35ebb29a8b4bda86ed7ae3d37767264aad;hp=219a21c9b9910482fc9be2aa3eb9454c9b3ca12b;p=attic%2Fports%2Fopt-cross.git portdbc: initial import (verified compilation). --- diff --git a/portdbc/.footprint b/portdbc/.footprint new file mode 100644 index 0000000..aaebfaa --- /dev/null +++ b/portdbc/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/portdbc diff --git a/portdbc/.md5sum b/portdbc/.md5sum new file mode 100644 index 0000000..fe76701 --- /dev/null +++ b/portdbc/.md5sum @@ -0,0 +1 @@ +170c82e64c52b522063c2e2d7e4f3da8 portdbc-1.0.tar.bz2 diff --git a/portdbc/Pkgfile b/portdbc/Pkgfile new file mode 100644 index 0000000..aff0abb --- /dev/null +++ b/portdbc/Pkgfile @@ -0,0 +1,17 @@ +# Description: CRUX's portdb command line client +# URL: NA +# Maintainer: Jose V Beneyto, sepen at crux dot nu +# Packager: Jose V Beneyto, sepen at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: curl libxml2 + +name=portdbc +version=1.0 +release=1 +source=(http://sepen.mine.nu/releases/$name-$version.tar.bz2) + +build() { + cd $name-$version + install -d $PKG/usr/bin + $CC -I$CLFS/usr/include -I$CLFS/usr/include/libxml2 -L$CLFS/usr/lib -lcurl -lxml2 -lz -lm -o $PKG/usr/bin/$name $name.c +}