summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Buelte2020-09-13 12:25:48 +0200
committerMax Buelte2020-09-13 12:25:48 +0200
commitcfe628fa47eeac42caaf52bd5502ac140e3b3948 (patch)
tree866eb2404100553a2e3929abf1925bd132db2a3f
downloadaur-cfe628fa47eeac42caaf52bd5502ac140e3b3948.tar.gz
Initial release of tifig-bin
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD15
3 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8628b85b3d0c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = tifig-bin
+ pkgdesc = Converts iOS 11 HEIC images to practical formats - Static binary
+ pkgver = 0.2.2
+ pkgrel = 1
+ url = https://github.com/monostream/tifig
+ arch = x86_64
+ license = Apache License 2.0
+ conflicts = tifig-git
+ source = tifig-bin-0.2.2.tar.gz::https://github.com/monostream/tifig/releases/download/0.2.2/tifig-static-0.2.2.tar.gz
+ md5sums = 364b11d73e75f9374c30f6f8bf413517
+
+pkgname = tifig-bin
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..ccd7820e50e3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+TODO
+Makefile
+*.pkg.tar.xz
+*.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..58ecefbb9b9c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: Max Wölfing <ff0x@this-is-fine.io>
+pkgname=tifig-bin
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='Converts iOS 11 HEIC images to practical formats - Static binary'
+arch=(x86_64)
+license=('Apache License 2.0')
+url='https://github.com/monostream/tifig'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/monostream/tifig/releases/download/$pkgver/tifig-static-$pkgver.tar.gz")
+md5sums=('364b11d73e75f9374c30f6f8bf413517')
+conflicts=('tifig-git')
+
+package() {
+ install -Dm755 "$srcdir/tifig" "$pkgdir/usr/bin/tifig"
+}