Split lib and dev packages

This commit is contained in:
2017-01-22 12:02:02 -06:00
parent ee7aa2bdd1
commit 0711347aaf
3 changed files with 72 additions and 17 deletions

View File

@@ -8,18 +8,25 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
DEPENDS = export SRCPKG = attr
ARCH = x86_64 export DEPENDS = glibc,libattr
URL = http://savannah.nongnu.org/projects/attr export ARCH = x86_64
export URL = http://savannah.nongnu.org/projects/attr
BRIEF = Filesystem extended attributes utilities BRIEF = Filesystem extended attributes utilities
DESC = Commands for Manipulating Filesystem Extended Attributes DESC = Commands for Manipulating Filesystem Extended Attributes
SNAPVER = sr1 SNAPVER = 2
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//') SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//')
PATCHDIR := $(PWD)/SRC/patches PATCHDIR := $(PWD)/SRC/patches
VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')$(SNAPVER) export VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'| \
sed 's/^-//')-$(SNAPVER)
LIBATTR := $(PWD)/libattr
export LIBATTRROOT := $(LIBATTR)/ROOT
LIBATTRDEV := $(PWD)/libattr-dev
export LIBATTRDEVROOT := $(LIBATTRDEV)/ROOT
MAKE = make MAKE = make
MAKEINST = make install install-dev install-lib MAKEINST = make install install-dev install-lib
@@ -27,6 +34,18 @@ SNAPHACKS =
include /usr/share/snap/Makefile.snaplinux include /usr/share/snap/Makefile.snaplinux
$(LIBATTRROOT): $(ROOT)
@install -v -d $(LIBATTR)/SNAP && \
install -v -d $(LIBATTRROOT)
@cd $(SRCDIR) && make install-lib DESTDIR=$(LIBATTRROOT)
@cd $(LIBATTR) && make -f ../Makefile.libattr && mv *.snap ../
$(LIBATTRDEVROOT): $(ROOT)
@install -v -d $(LIBATTRDEV)/SNAP && \
install -v -d $(LIBATTRDEVROOT)
@cd $(SRCDIR) && make install-dev DESTDIR=$(LIBATTRDEVROOT)
@cd $(LIBATTRDEV) && make -f ../Makefile.libattrdev && mv *.snap ../
$(SRCDIR): $(ARCHIVE) $(SRCDIR): $(ARCHIVE)
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \ @if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
tar -jxf $(ARCHIVE); \ tar -jxf $(ARCHIVE); \
@@ -42,23 +61,21 @@ $(SRCDIR): $(ARCHIVE)
fi fi
$(SRCDIR)/config.log: $(SRCDIR) $(SRCDIR)/config.log: $(SRCDIR)
@cd $(SRCDIR) && for patch in `find $(PATCHDIR) -name \*.patch`; do \ @cd $(SRCDIR) && \
patch --verbose -Np0 -i $$patch; \ for patch in `find $(PATCHDIR) -name \*.patch|sort`; do \
patch --verbose -Np1 -i $$patch; \
done done
@cd $(SRCDIR); \ @cd $(SRCDIR); ./configure \
./configure \
--prefix=/usr \ --prefix=/usr \
--bindir=/bin \ --bindir=/bin \
--libdir=/lib \ --libdir=/lib \
--libexecdir=/usr/lib \ --libexecdir=/usr/lib \
--disable-static \
--build=x86_64-snap-linux-gnu \ --build=x86_64-snap-linux-gnu \
--host=x86_64-snap-linux-gnu \ --host=x86_64-snap-linux-gnu \
--target=x86_64-snap-linux-gnu --target=x86_64-snap-linux-gnu
$(SRCDIR)/attr: $(SRCDIR)/config.log $(SRCDIR)/attr: $(SRCDIR)/config.log
@cd $(SRCDIR); \ @cd $(SRCDIR) && make
$(MAKE)
$(ROOT): $(SRCDIR)/attr $(ROOT): $(SRCDIR)/attr
@if [ -d $(ROOT) ]; then \ @if [ -d $(ROOT) ]; then \
@@ -66,11 +83,17 @@ $(ROOT): $(SRCDIR)/attr
else \ else \
mkdir -v $(ROOT); \ mkdir -v $(ROOT); \
fi fi
@install -v -d $(LIBATTR)/SNAP && \
@cd $(SRCDIR); \ install -v -d $(LIBATTRROOT) && \
$(MAKEINST) DESTDIR=$(ROOT) install -v -d $(LIBATTRDEV)/SNAP && \
install -v -d $(LIBATTRDEVROOT) && \
@$(SNAPHACKS) cd $(SRCDIR) && make install-lib DESTDIR=$(LIBATTRROOT) && \
make install-dev DESTDIR=$(LIBATTRDEVROOT) && \
make install DESTDIR=$(ROOT) && \
gzip $(ROOT)/usr/share/doc/attr/COPYING* && \
gzip $(LIBATTRROOT)/usr/share/doc/attr/COPYING* && \
cd $(LIBATTR) && make -f ../Makefile.libattr && mv *.snap ../ && \
cd $(LIBATTRDEV) && make -f ../Makefile.libattrdev && mv *.snap ../
test: $(ROOT) test: $(ROOT)
@cd $(SRCDIR); \ @cd $(SRCDIR); \
@@ -78,6 +101,8 @@ test: $(ROOT)
clean: clean:
@rm -rvf $(ROOT) \ @rm -rvf $(ROOT) \
$(LIBATTR) \
$(LIBATTRDEV) \
$(SNAPINFO) \ $(SNAPINFO) \
$(MANIFEST) \ $(MANIFEST) \
$(FILES) \ $(FILES) \

15
Makefile.libattr Normal file
View File

@@ -0,0 +1,15 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
DEPENDS = glibc
BRIEF = Access control list shared library
DESC = Shared library for manipulating POSIX Access Control Lists
include /usr/share/snap/Makefile.snaplinux

15
Makefile.libattrdev Normal file
View File

@@ -0,0 +1,15 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
DEPENDS = glibc,libattr
BRIEF = Access control list shared library
DESC = Shared library for manipulating POSIX Access Control Lists
include /usr/share/snap/Makefile.snaplinux