Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c70940fb3 |
12
Makefile
12
Makefile
@@ -9,22 +9,22 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
ARCH = x86_64
|
ARCH = x86_64
|
||||||
DEPENDS = dash,glibc,libgcc,libuv,libstdc++,ncurses
|
DEPENDS = bzip2,dash,glibc,libarchive,libcurl,libexpat,libgcc,libnettle,libstdc++,libuv,libxml2,ncurses,xz,zlib
|
||||||
BUILDDEPS = coreutils,curl-dev,expat-dev,libarchive,libuv-dev
|
BUILDDEPS = bzip2-dev,curl-dev,expat-dev,libarchive,libuv-dev,libxml2-dev,ncurses-dev,nettle-dev,xz-dev,zlib-dev
|
||||||
URL = https://cmake.org/
|
URL = https://cmake.org/
|
||||||
REPO = dev
|
REPO = dev
|
||||||
BRIEF = Tool for building and packages software
|
BRIEF = Tool for building and packages software
|
||||||
DESC = CMake is an open-source, cross-platform family of tools designed to \
|
DESC = CMake is an open-source, cross-platform family of tools designed to \
|
||||||
build, test and package software
|
build, test and package software
|
||||||
SNAPVER = 0
|
SLVER = 1
|
||||||
|
|
||||||
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)
|
VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')-$(SLVER)
|
||||||
|
|
||||||
include /usr/share/snap/Makefile.snaplinux
|
include /usr/share/sl/Makefile.snaplinux
|
||||||
|
|
||||||
$(SRCDIR)/configure: $(ARCHIVE)
|
$(SRCDIR)/configure: $(ARCHIVE)
|
||||||
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
|
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
|
||||||
@@ -72,7 +72,7 @@ test: $(ROOT)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm -rvf $(ROOT) \
|
@rm -rvf $(ROOT) \
|
||||||
$(SNAPINFO) \
|
$(SLINFO) \
|
||||||
$(MANIFEST) \
|
$(MANIFEST) \
|
||||||
$(FILES) \
|
$(FILES) \
|
||||||
$(SRCDIR)
|
$(SRCDIR)
|
||||||
|
|||||||
Reference in New Issue
Block a user