Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c751c2a715 | ||
|
|
7e5b2a5ccd | ||
|
|
9f256b57f8 | ||
|
|
3dfb037f37 |
10
Makefile
10
Makefile
@@ -9,13 +9,13 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
export SRCPKG = curl
|
export SRCPKG = curl
|
||||||
export DEPENDS = glibc,gmp,gnutls,libcurl,nettle,openssl,zlib
|
export DEPENDS = glibc,gmp,libcurl,libgnutls,libnettle,openssl,zlib
|
||||||
export ARCH = x86_64
|
export ARCH = x86_64
|
||||||
export URL = http://curl.haxx.se/
|
export URL = http://curl.haxx.se/
|
||||||
BRIEF = Tool which transfers data from or to a server
|
BRIEF = Tool which transfers data from or to a server
|
||||||
DESC = curl is a command line tool and library for transferring data \
|
DESC = curl is a command line tool and library for transferring data \
|
||||||
with URL syntax
|
with URL syntax
|
||||||
SNAPVER = 2
|
SNAPVER = 6
|
||||||
|
|
||||||
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')
|
||||||
@@ -31,7 +31,7 @@ DEVROOT := $(DEV)/ROOT
|
|||||||
|
|
||||||
include /usr/share/snap/Makefile.snaplinux
|
include /usr/share/snap/Makefile.snaplinux
|
||||||
|
|
||||||
$(SRCDIR)/configure:
|
$(SRCDIR)/configure: $(ARCHIVE)
|
||||||
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
|
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
|
||||||
tar -jxf $(ARCHIVE); \
|
tar -jxf $(ARCHIVE); \
|
||||||
elif [ '$(TYPE)' == 'application/x-gzip' ]; then \
|
elif [ '$(TYPE)' == 'application/x-gzip' ]; then \
|
||||||
@@ -44,6 +44,7 @@ $(SRCDIR)/configure:
|
|||||||
echo 'Unable to determine archive type'; \
|
echo 'Unable to determine archive type'; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
|
@touch $(SRCDIR)/configure
|
||||||
|
|
||||||
$(SRCDIR)/config.log: $(SRCDIR)/configure
|
$(SRCDIR)/config.log: $(SRCDIR)/configure
|
||||||
@cd $(SRCDIR) && \
|
@cd $(SRCDIR) && \
|
||||||
@@ -53,7 +54,6 @@ $(SRCDIR)/config.log: $(SRCDIR)/configure
|
|||||||
@cd $(SRCDIR); \
|
@cd $(SRCDIR); \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--disable-static \
|
|
||||||
--enable-threaded-resolver \
|
--enable-threaded-resolver \
|
||||||
--without-ssl \
|
--without-ssl \
|
||||||
--with-gnutls \
|
--with-gnutls \
|
||||||
@@ -77,13 +77,13 @@ $(ROOT): $(SRCDIR)/src/curl
|
|||||||
install -v -d $(LIBROOT)/usr/lib && \
|
install -v -d $(LIBROOT)/usr/lib && \
|
||||||
install -v -d $(DEV)/SNAP && \
|
install -v -d $(DEV)/SNAP && \
|
||||||
install -v -d $(DEVROOT) && \
|
install -v -d $(DEVROOT) && \
|
||||||
mv -v $(ROOT)/usr/lib/libcurl* $(LIBROOT)/usr/lib && \
|
|
||||||
for file in `find $(ROOT)|egrep \
|
for file in `find $(ROOT)|egrep \
|
||||||
'man3\/|pkgconfig\/|\.a$$|\.h$$|\.m4$$'`; do \
|
'man3\/|pkgconfig\/|\.a$$|\.h$$|\.m4$$'`; do \
|
||||||
path=`dirname $$file|sed "s[$(ROOT)[$(DEVROOT)["`; \
|
path=`dirname $$file|sed "s[$(ROOT)[$(DEVROOT)["`; \
|
||||||
mkdir -vp -m 0755 $$path; \
|
mkdir -vp -m 0755 $$path; \
|
||||||
mv -v $$file $$path; \
|
mv -v $$file $$path; \
|
||||||
done && \
|
done && \
|
||||||
|
mv -v $(ROOT)/usr/lib/libcurl* $(LIBROOT)/usr/lib && \
|
||||||
find $(ROOT) -type d -empty -delete && \
|
find $(ROOT) -type d -empty -delete && \
|
||||||
cd $(LIB) && make -f ../Makefile.libcurl && mv *.snap ../ && \
|
cd $(LIB) && make -f ../Makefile.libcurl && mv *.snap ../ && \
|
||||||
cd $(DEV) && make -f ../Makefile.curl-dev && mv *.snap ../
|
cd $(DEV) && make -f ../Makefile.curl-dev && mv *.snap ../
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
# 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 = glibc,gmp,gnutls,nettle,zlib
|
DEPENDS = glibc,gmp,libgnutls,libnettle,zlib
|
||||||
BRIEF = Runtime library for curl
|
BRIEF = Runtime library for curl
|
||||||
DESC = Runtime library for curl
|
DESC = Runtime library for curl
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user