From 516bba6ff5daee5e150e6fe635c638ce4efb7eab Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 26 Jul 2014 00:43:49 -0400 Subject: Initial commit --- 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..67a7023 --- /dev/null +++ b/build @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +include ../source.mk + +nop: + @: + +build: + oh-autoconfigure + oh-autobuild + touch $@ + +install: build + oh-autoinstall + oh-fixperms + oh-strip + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..291a864 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +libexif (0.6.21-1) trunk + + * Initial release. + + -- "P. J. McDermott" Sat, 26 Jul 2014 00:42:19 -0400 diff --git a/control b/control new file mode 100644 index 0000000..26a3ebc --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" +Build-Depends: opkhelper-3.0 +Homepage: http://libexif.sourceforge.net/ 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..ce2f407 --- /dev/null +++ b/source.mk @@ -0,0 +1,10 @@ +upstream_sf_base = http://downloads.sourceforge.net/project/$(OPK_SOURCE) +upstream_path = $(OPK_SOURCE)/$(OPK_SOURCE_VERSION_UPSTREAM) +upstream_archive = $(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).tar.gz +upstream_url = $(upstream_sf_base)/$(upstream_path)/$(upstream_archive) +source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.gz + +$(source_archive): + wget -O '$@' '$(upstream_url)' + +source: $(source_archive) -- cgit v0.9.1