From 4b879b5d8b74470c798e629743f855cf04626682 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 24 Jul 2014 17:47:11 -0400 Subject: Initial commit --- diff --git a/build b/build new file mode 100755 index 0000000..dd90713 --- /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 -k + oh-installfiles diff --git a/changelog b/changelog new file mode 100644 index 0000000..dd4b6ff --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +libpng12 (1.2.51-1) trunk + + * Initial release. + + -- "P. J. McDermott" Tue, 28 Jan 2014 11:25:23 -0500 diff --git a/control b/control new file mode 100644 index 0000000..f680a11 --- /dev/null +++ b/control @@ -0,0 +1,3 @@ +Maintainer: "P. J. McDermott" +Build-Depends: opkhelper-3.0, libz.1-dev +Homepage: http://www.libpng.org/pub/png/libpng.html 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..1f1ee0d --- /dev/null +++ b/source.mk @@ -0,0 +1,10 @@ +upstream_sf_base = http://downloads.sourceforge.net/project/libpng +upstream_path = $(OPK_SOURCE)/$(OPK_SOURCE_VERSION_UPSTREAM) +upstream_archive = libpng-$(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