summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Martinez2021-05-23 23:53:27 -0500
committerLuis Martinez2021-05-23 23:53:27 -0500
commit6b77f3560e95ff7b8232b3bff92dacfc609d7d75 (patch)
tree2181d201e7e17b3301c34166d2e0d67b74a906eb
parente6db3f16293a8d2e2c97a85026c736e258f60c34 (diff)
downloadaur-6b77f3560e95ff7b8232b3bff92dacfc609d7d75.tar.gz
remove dpkg makedepends
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 3 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7653ff7f6fc5..53c5e409aaa9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
pkgbase = emulsion-bin
pkgdesc = A fast and minimalistic image viewer (binary release)
pkgver = 9.0
- pkgrel = 2
+ pkgrel = 3
url = https://arturkovacs.github.io/emulsion-website
arch = x86_64
license = MIT
- makedepends = dpkg
depends = gcc-libs
optdepends = hicolor-icon-theme
provides = emulsion
diff --git a/PKGBUILD b/PKGBUILD
index 4beecb179a66..afc5bd976782 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,12 @@
pkgname=emulsion-bin
_name="${pkgname%-bin}"
pkgver=9.0
-pkgrel=2
+pkgrel=3
pkgdesc="A fast and minimalistic image viewer (binary release)"
arch=('x86_64')
url="https://arturkovacs.github.io/emulsion-website"
license=('MIT')
depends=('gcc-libs')
-makedepends=('dpkg')
optdepends=('hicolor-icon-theme')
provides=("$_name")
conflicts=("$_name")
@@ -19,7 +18,7 @@ source=("$_name-$pkgver.deb::https://github.com/arturkovacs/emulsion/releases/do
sha256sums=('f66ab3b655af4da6e4c3fb60540c241cc9e7055ab70a0638aedd8af484d90427')
package() {
- dpkg-deb --extract "$_name-$pkgver.deb" "$pkgdir/"
+ tar -C "${pkgdir}" -xf data.tar.gz
install -d "$pkgdir/usr/share/licenses/$pkgname/"
mv "$pkgdir/usr/lib/$_name/LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/"
chown -R root:root "$pkgdir/"