summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-12 02:17:32 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-12 02:17:32 (EDT)
commit422e5a4f77acf46d17cabbcad7d3f456bf833d5b (patch)
treeac708e7d4b39d878230f17003d91125a0dfbae7c
Initial commit.
-rw-r--r--.gitignore11
-rwxr-xr-xbuild20
-rw-r--r--changelog5
-rw-r--r--control3
-rw-r--r--format1
-rw-r--r--source.mk10
6 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..213a9bf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+# Swap and backup files
+.*.sw*
+.sw*
+*~
+Session.vim
+
+# Source archives
+*-*.orig.tar.*
+
+# Work area
+tmp/
diff --git a/build b/build
new file mode 100755
index 0000000..b8502f4
--- /dev/null
+++ b/build
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+include ../source.mk
+
+nop:
+ @:
+
+build:
+ oh-autoconfigure
+ oh-autobuild
+ if [ 'x$(OPK_BUILD_ARCH)' = 'x$(OPK_HOST_ARCH)' ]; then \
+ oh-autotest; \
+ fi
+ touch $@
+
+install: build
+ oh-autoinstall
+ oh-fixperms
+ oh-strip
+ oh-installfiles
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..9bf57af
--- /dev/null
+++ b/changelog
@@ -0,0 +1,5 @@
+pkgconf (0.9.6-1) trunk
+
+ * Initial release.
+
+ -- "P. J. McDermott" <pj@pehjota.net> Thu, 12 Jun 2014 02:11:05 -0400
diff --git a/control b/control
new file mode 100644
index 0000000..0fb6ba1
--- /dev/null
+++ b/control
@@ -0,0 +1,3 @@
+Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Build-Depends: opkhelper-3.0
+Homepage: https://github.com/pkgconf/pkgconf
diff --git a/format b/format
new file mode 100644
index 0000000..cd5ac03
--- /dev/null
+++ b/format
@@ -0,0 +1 @@
+2.0
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..01faf5e
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,10 @@
+upstream_base_url = http://rabbit.dereferenced.org/~nenolod/distfiles
+upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2
+upstream_url = $(upstream_base_url)/$(upstream_archive)
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2
+
+$(source_archive):
+ wget -c '$(upstream_url)'
+ mv '$(upstream_archive)' '$(source_archive)'
+
+source: $(source_archive)