Split off separate dev package
This commit is contained in:
44
Makefile
44
Makefile
@@ -8,24 +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 = openssl
|
||||||
ARCH = x86_64
|
export DEPENDS = glibc
|
||||||
URL = https://www.openssl.org/
|
export ARCH = x86_64
|
||||||
|
export URL = https://www.openssl.org/
|
||||||
|
BRIEF = Library routines for TLS and SSL
|
||||||
DESC = OpenSSL is an open source project that provides a robust, \
|
DESC = OpenSSL is an open source project that provides a robust, \
|
||||||
commercial-grade, and full-featured toolkit for the Transport Layer \
|
commercial-grade, and full-featured toolkit for the Transport Layer \
|
||||||
Security (TLS) and Secure Sockets Layer (SSL) protocols.
|
Security (TLS) and Secure Sockets Layer (SSL) protocols.
|
||||||
SNAPVER = sr0
|
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)
|
||||||
|
|
||||||
MAKE = make depend && make
|
DEV := $(PWD)/openssl-dev
|
||||||
MAKEINST = make MANDIR=/usr/share/man MANSUFFIX=ssl install
|
DEVROOT := $(DEV)/ROOT
|
||||||
SNAPHACKS = install -d -v -m 755 $(ROOT)/usr/share/doc/openssl && \
|
|
||||||
cp -vr $(SRCDIR)/doc/* $(ROOT)/usr/share/doc/openssl
|
|
||||||
|
|
||||||
include /usr/share/snap/Makefile.snaplinux
|
include /usr/share/snap/Makefile.snaplinux
|
||||||
|
|
||||||
@@ -45,8 +46,9 @@ $(SRCDIR)/config: $(ARCHIVE)
|
|||||||
@touch $(SRCDIR)/config
|
@touch $(SRCDIR)/config
|
||||||
|
|
||||||
$(SRCDIR)/config.log: $(SRCDIR)/config
|
$(SRCDIR)/config.log: $(SRCDIR)/config
|
||||||
@cd $(SRCDIR) && for patch in `find $(PATCHDIR) -name \*.patch`; do \
|
@cd $(SRCDIR) && \
|
||||||
patch --verbose -Np1 -i $$patch; \
|
for patch in `find $(PATCHDIR) -name \*.patch|sort`; do \
|
||||||
|
patch --verbose -Np0 -i $$patch; \
|
||||||
done
|
done
|
||||||
@cd $(SRCDIR); \
|
@cd $(SRCDIR); \
|
||||||
./config \
|
./config \
|
||||||
@@ -57,8 +59,7 @@ $(SRCDIR)/config.log: $(SRCDIR)/config
|
|||||||
zlib-dynamic
|
zlib-dynamic
|
||||||
|
|
||||||
$(SRCDIR)/apps/openssl: $(SRCDIR)/config.log
|
$(SRCDIR)/apps/openssl: $(SRCDIR)/config.log
|
||||||
@cd $(SRCDIR); \
|
@cd $(SRCDIR) && make depend && make
|
||||||
$(MAKE)
|
|
||||||
|
|
||||||
$(ROOT): $(SRCDIR)/apps/openssl
|
$(ROOT): $(SRCDIR)/apps/openssl
|
||||||
@if [ -d $(ROOT) ]; then \
|
@if [ -d $(ROOT) ]; then \
|
||||||
@@ -67,10 +68,20 @@ $(ROOT): $(SRCDIR)/apps/openssl
|
|||||||
mkdir -v $(ROOT); \
|
mkdir -v $(ROOT); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@cd $(SRCDIR); \
|
@cd $(SRCDIR) && make MANDIR=/usr/share/man install \
|
||||||
$(MAKEINST) INSTALL_PREFIX=$(ROOT)
|
INSTALL_PREFIX=$(ROOT)
|
||||||
|
|
||||||
@$(SNAPHACKS)
|
@install -v -d $(DEV)/SNAP && \
|
||||||
|
install -v -d $(DEVROOT) && \
|
||||||
|
install -d -v -m 755 $(DEVROOT)/usr/share/doc/openssl && \
|
||||||
|
cp -vr $(SRCDIR)/doc/* $(DEVROOT)/usr/share/doc/openssl && \
|
||||||
|
for file in `find $(ROOT)|egrep 'man3\/|pkgconfig\/|\.a$$|\.h$$'`; do \
|
||||||
|
path=`dirname $$file|sed "s[$(ROOT)[$(DEVROOT)["`; \
|
||||||
|
mkdir -p $$path; \
|
||||||
|
mv $$file $$path; \
|
||||||
|
done && \
|
||||||
|
find $(ROOT) -type d -empty -delete && \
|
||||||
|
cd $(DEV) && make -f ../Makefile.openssl-dev && mv *.snap ../
|
||||||
|
|
||||||
test: $(ROOT)
|
test: $(ROOT)
|
||||||
@cd $(SRCDIR); \
|
@cd $(SRCDIR); \
|
||||||
@@ -78,6 +89,7 @@ test: $(ROOT)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm -rvf $(ROOT) \
|
@rm -rvf $(ROOT) \
|
||||||
|
$(DEV) \
|
||||||
$(SNAPINFO) \
|
$(SNAPINFO) \
|
||||||
$(MANIFEST) \
|
$(MANIFEST) \
|
||||||
$(FILES) \
|
$(FILES) \
|
||||||
|
|||||||
15
Makefile.openssl-dev
Normal file
15
Makefile.openssl-dev
Normal 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 = openssl
|
||||||
|
BRIEF = Development files for openssl
|
||||||
|
DESC = Development files for openssl
|
||||||
|
|
||||||
|
include /usr/share/snap/Makefile.snaplinux
|
||||||
Reference in New Issue
Block a user