Overview
Comment: | Added "attr" package |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | packages |
Files: | files | file ages | folders |
SHA1: |
5a12684aa81c6cdd07f55882f164486d |
User & Date: | rkeene on 2014-11-12 08:04:41 |
Other Links: | branch diff | manifest | tags |
Context
2014-11-12
| ||
08:18 | Added ACL package check-in: 2174a44d80 user: rkeene tags: packages | |
08:04 | Added "attr" package check-in: 5a12684aa8 user: rkeene tags: packages | |
08:04 | Added support for applying patches check-in: af79362c78 user: rkeene tags: packages | |
Changes
Added pkgs/attr/info version [59cddfa940].
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /usr/bin/env bash version='2.4.47' url="http://download.savannah.gnu.org/releases/attr/attr-${version}.src.tar.gz" domain=core.appfs.rkeene.org sha256='25772f653ac5b2e3ceeb89df50e4688891e21f723c460636548971652af0a859' function prebuild() { echo "# Ignore: DESTDIR" >> Makefile } function install() { make install install-dev install-lib DESTDIR="${destdir}" } |
Added pkgs/attr/patches/attr.destdir.diff version [a05356e164].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | --- ./include/builddefs.in.orig 2011-04-08 11:56:59.000000000 -0500 +++ ./include/builddefs.in 2011-04-18 13:27:35.000000000 -0500 @@ -40,14 +40,14 @@ PKG_VERSION = @pkg_version@ PKG_PLATFORM = @pkg_platform@ PKG_DISTRIBUTION= @pkg_distribution@ -PKG_BIN_DIR = @bindir@ -PKG_SBIN_DIR = @sbindir@ -PKG_LIB_DIR = @libdir@@libdirsuffix@ -PKG_DEVLIB_DIR = @libexecdir@@libdirsuffix@ -PKG_INC_DIR = @includedir@/attr -PKG_MAN_DIR = @mandir@ -PKG_DOC_DIR = @datadir@/doc/@pkg_name@ -PKG_LOCALE_DIR = @datadir@/locale +PKG_BIN_DIR = $(DESTDIR)@bindir@ +PKG_SBIN_DIR = $(DESTDIR)@sbindir@ +PKG_LIB_DIR = $(DESTDIR)@libdir@@libdirsuffix@ +PKG_DEVLIB_DIR = $(DESTDIR)@libexecdir@@libdirsuffix@ +PKG_INC_DIR = $(DESTDIR)@includedir@/attr +PKG_MAN_DIR = $(DESTDIR)@mandir@ +PKG_DOC_DIR = $(DESTDIR)@datadir@/doc/@pkg_name@ +PKG_LOCALE_DIR = $(DESTDIR)@datadir@/locale CC = @cc@ AWK = @awk@ --- ./include/buildmacros.orig 2011-04-08 11:56:59.000000000 -0500 +++ ./include/buildmacros 2011-04-18 13:28:23.000000000 -0500 @@ -40,7 +40,7 @@ $(LFILES:.l=.o) \ $(YFILES:%.y=%.tab.o) -INSTALL = $(TOPDIR)/include/install-sh -o $(PKG_USER) -g $(PKG_GROUP) +INSTALL = $(TOPDIR)/include/install-sh SHELL = /bin/sh IMAGES_DIR = $(TOPDIR)/all-images |