First check in

This commit is contained in:
2016-10-21 15:42:01 -05:00
commit 8e098ab4e1
5 changed files with 104 additions and 0 deletions

83
Makefile Normal file
View File

@@ -0,0 +1,83 @@
# 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 =
ARCH = x86_64
URL = https://strace.sourceforge.net/
DESC = strace is a diagnostic, debugging and instructional userspace tracer \
for Linux
SNAPVER = sr0
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//')
PATCHDIR := $(PWD)/SRC/patches
VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')$(SNAPVER)
MAKE = make
MAKEINST = make install
SNAPHACKS =
include /usr/share/snap/Makefile.snaplinux
$(SRCDIR)/configure: $(ARCHIVE)
@if [ '$(TYPE)' == 'application/x-bzip2' ]; then \
tar -jxf $(ARCHIVE); \
elif [ '$(TYPE)' == 'application/x-gzip' ]; then \
tar -zxf $(ARCHIVE); \
elif [ '$(TYPE)' == 'application/x-tar' ]; then \
tar -xf $(ARCHIVE); \
elif [ '$(TYPE)' == 'application/x-xz' ]; then \
tar -xf $(ARCHIVE); \
else \
echo 'Unable to determine archive type'; \
exit 1; \
fi
@touch $(SRCDIR)/configure
$(SRCDIR)/config.log: $(SRCDIR)/configure
@cd $(SRCDIR) && \
for patch in `find $(PATCHDIR) -name \*.patch|sort`; do \
patch --verbose -Np0 -i $$patch; \
done
@cd $(SRCDIR); \
./configure \
--prefix=/usr \
--build=x86_64-snap-linux-gnu \
--host=x86_64-snap-linux-gnu \
--target=x86_64-snap-linux-gnu
$(SRCDIR)/strace: $(SRCDIR)/config.log
@cd $(SRCDIR); \
$(MAKE)
$(ROOT): $(SRCDIR)/strace
@if [ -d $(ROOT) ]; then \
touch $(ROOT); \
else \
mkdir -v $(ROOT); \
fi
@cd $(SRCDIR); \
$(MAKEINST) DESTDIR=$(ROOT)
@$(SNAPHACKS)
test: $(ROOT)
@cd $(SRCDIR); \
make check
clean:
@rm -rvf $(ROOT) \
$(SNAPINFO) \
$(MANIFEST) \
$(FILES) \
$(SRCDIR)

3
SNAP/README Normal file
View File

@@ -0,0 +1,3 @@
This is the directory where the manifest, snapinfo, and files.tar.gz
files will be created. It is also where the usher file should be
placed if it is required by the package.

2
SRC/patches/README Normal file
View File

@@ -0,0 +1,2 @@
Place any patch files here and preface each with a number indicating
the order of execution. Patch files are expected to use a .patch extension.

BIN
SRC/strace-4.14.tar.xz Normal file

Binary file not shown.

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIcBAABCAAGBQJX8/KoAAoJEKgEH6g54W42VDEP/jUrRsU6uGlsB4oHbHTdiqik
EdRKGEIyJxr2Ph0EVUnWMY0atyDSYch9SouXsw/r0LoG7kHMWAwlikJS5suwsXNy
xxqO2Un6eielT56/z3h3WY6ZkBGC3kEYBk1XA2RV0Pudm+GNt8qOymkfa9f2xqQB
DBlOEEjvQ/i7p0jfq29LWwIfBA81Z+BnPAo9oF62z/zyTHCFOiUQF7OI/c0794RY
op8LuH7Qg/K8GC0mKJpmLouOsbv0NnzMW3aFx09HC0O1FKxHSxkmFlMyOSDztj5e
o40bLLWPWfepgYkf4BrnAghLmTsD02Yt5AIfHkka28VC0dDoSuRiDsNAEoWISJh2
zGngJQ7tCQkJscAvNMAirXyG8fOfHG/foX3Ds5x1SpGbQKGsxFuON5a+ntSV1inU
c3GLqxkXA0xo7e8PbNaLI9eBZc1xSI0yerTV3v1CsPbV5Szt3qW4hvlliSitvg4a
2NDu+FHHVHFmyFCnKjSPBXTobg8vXs9cfqnwl3JHdSJipwPxqvu0IAdAizeSat+E
pw+lNWhsAceIHn1pCjL33PDgznJDasP5mh+iOXpJlQHoe7uc/MvXV2f4MyPQ8PSk
Mcd14zgm4eFVB0kbWlHDmXSefd9yE7RS/W5RnhiXMf+oWyOccxSbjIiV6mByXM3A
njQWPjY9/U4ntpBHB8lM
=1YDW
-----END PGP SIGNATURE-----