diff options
Diffstat (limited to 'core/attr')
| -rw-r--r-- | core/attr/.footprint | 33 | ||||
| -rw-r--r-- | core/attr/.signature | 6 | ||||
| -rw-r--r-- | core/attr/MAKEPKG | 45 |
3 files changed, 84 insertions, 0 deletions
diff --git a/core/attr/.footprint b/core/attr/.footprint new file mode 100644 index 0000000..246dfef --- /dev/null +++ b/core/attr/.footprint @@ -0,0 +1,33 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/attr +-rwxr-xr-x root/root bin/getfattr +-rwxr-xr-x root/root bin/setfattr +drwxr-xr-x root/root include/ +drwxr-xr-x root/root include/attr/ +-rw-r--r-- root/root include/attr/attributes.h +-rw-r--r-- root/root include/attr/error_context.h +-rw-r--r-- root/root include/attr/libattr.h +drwxr-xr-x root/root lib/ +-rwxr-xr-x root/root lib/libattr.so.1.1.2600 +lrwxrwxrwx root/root lib/libattr.so -> libattr.so.1.1.2600 +lrwxrwxrwx root/root lib/libattr.so.1 -> libattr.so.1.1.2600 +drwxr-xr-x root/root lib/pkgconfig/ +-rw-r--r-- root/root lib/pkgconfig/libattr.pc +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/attr.1.gz +-rw-r--r-- root/root usr/share/man/man1/getfattr.1.gz +-rw-r--r-- root/root usr/share/man/man1/setfattr.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/attr_get.3.gz +-rw-r--r-- root/root usr/share/man/man3/attr_list.3.gz +-rw-r--r-- root/root usr/share/man/man3/attr_multi.3.gz +-rw-r--r-- root/root usr/share/man/man3/attr_remove.3.gz +-rw-r--r-- root/root usr/share/man/man3/attr_set.3.gz +lrwxrwxrwx root/root usr/share/man/man3/attr_getf.3.gz -> attr_get.3.gz +lrwxrwxrwx root/root usr/share/man/man3/attr_listf.3.gz -> attr_list.3.gz +lrwxrwxrwx root/root usr/share/man/man3/attr_multif.3.gz -> attr_multi.3.gz +lrwxrwxrwx root/root usr/share/man/man3/attr_removef.3.gz -> attr_remove.3.gz +lrwxrwxrwx root/root usr/share/man/man3/attr_setf.3.gz -> attr_set.3.gz diff --git a/core/attr/.signature b/core/attr/.signature new file mode 100644 index 0000000..17bd277 --- /dev/null +++ b/core/attr/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mHQQrLjqTwPHPPnS8WhHGxc17Qq4BL4b7NniOgidgUW+1JqDUQHTYZQrWLcDmtAuyxjsJRrz1tfTE2ogzQGUFQg= + +SHA256 (MAKEPKG) = 57620314aaecb729db3521b9fb79391987ecddfc4f7f9014682a4d86074e86e3 +SHA256 (.footprint) = ffe90b00538b656aeab267f54d1e7cd69a4f832941874725ebcc3e4245c98a54 +SHA256 (attr-2.6.0.tar.xz) = 6c8a2148a7b85043b68492bce43316b0e2e214fc4e628c7ede078e76e216330b +SHA256 (attr#2.6.0-1.pkg.tar.gz) = dbb73cb15b8308107d8c505259e00538959dbe8852dabb2c5757a28a669e8852 diff --git a/core/attr/MAKEPKG b/core/attr/MAKEPKG new file mode 100644 index 0000000..8b86190 --- /dev/null +++ b/core/attr/MAKEPKG @@ -0,0 +1,45 @@ +#!/bin/mkpkg +# description: Extended attribute support library +# url: https://savannah.nongnu.org/projects/attr + +name=attr +version=2.6.0 +release=1 +depends=() +makedeps=() +source=(https://download.savannah.gnu.org/releases/attr/attr-$version.tar.xz) +sha256sums=( + "6c8a2148a7b85043b68492bce43316b0e2e214fc4e628c7ede078e76e216330b" +) + +patch() { + cd attr-$version + sed -i '1i #include <libgen.h>' tools/attr.c +} + +build() { + cd attr-$version + #export CFLAGS="$CFLAGS -D_GNU_SOURCE" + ./configure \ + --prefix=/ \ + --libdir=/lib \ + --includedir=/include \ + --bindir=/bin \ + --mandir=/usr/share/man \ + --disable-static \ + --disable-nls + + make + make DESTDIR=$PKG install + + # Remove docs + rm -rf $PKG/share + rm -rf $PKG/etc +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
