summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-07-25 10:47:35 +0300
committerDimitris Kiziridis2020-07-25 10:47:35 +0300
commit11e1492e345dd7c3f1f0a06bf435dde738597c76 (patch)
tree522a98e98ae236acbfa42fdddf354422ab498fe0
downloadaur-apngasm-bin.tar.gz
Initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD20
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..481015dc410f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = apngasm-bin
+ pkgdesc = Creates APNG animation from PNG/TGA image sequence
+ pkgver = 2.91
+ pkgrel = 1
+ url = https://sourceforge.net/projects/apngasm
+ arch = x86_64
+ license = ZLIB
+ depends = libpng
+ provides = apngasm
+ conflicts = apngasm
+ source = apngasm-bin-2.91.zip::https://netix.dl.sourceforge.net/project/apngasm/2.91/apngasm-2.91-bin-linux.zip
+ sha256sums = 91f27aad17f8abc5bc197febd24cfa9dce081d280a8e60df1437139e74a93045
+
+pkgname = apngasm-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ba6bd9cd7d8a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=apngasm-bin
+pkgver=2.91
+pkgrel=1
+pkgdesc='Creates APNG animation from PNG/TGA image sequence'
+arch=('x86_64')
+url='https://sourceforge.net/projects/apngasm'
+license=('ZLIB')
+provides=('apngasm')
+conflicts=('apngasm')
+depends=('libpng')
+source=("${pkgname}-${pkgver}.zip::https://netix.dl.sourceforge.net/project/apngasm/${pkgver}/apngasm-${pkgver}-bin-linux.zip")
+sha256sums=('91f27aad17f8abc5bc197febd24cfa9dce081d280a8e60df1437139e74a93045')
+
+package() {
+ install -Dm755 apngasm -t "${pkgdir}/usr/bin"
+ install -Dm644 readme.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+# vim:set ts=2 sw=2 et: \ No newline at end of file