summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2020-03-10 12:32:39 -0600
committerMark Wagie2020-03-10 12:32:39 -0600
commit87dfb6b46b966f35ff52d4f5d52f6345e16d0a0c (patch)
treec36d46cf01ee4ace0f660761d3acf800b3c46dad
parent3e859f4dcbdf5a14306deea1b267b950d91dc311 (diff)
downloadaur-87dfb6b46b966f35ff52d4f5d52f6345e16d0a0c.tar.gz
remove generic Lazarus icons
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD17
2 files changed, 3 insertions, 17 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9147526f2685..b23cc9dc046e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,12 @@
pkgbase = goverlay-git
pkgdesc = An opensource project that aims to create a Graphical UI to help manage Linux overlays.
pkgver = 0.1.3.r11.g1f00701
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/benjamimgois/goverlay
arch = x86_64
license = GPL3
makedepends = git
makedepends = lazarus
- makedepends = imagemagick
depends = gtk2
optdepends = mangohud
provides = goverlay
diff --git a/PKGBUILD b/PKGBUILD
index 6ac669cd9fe5..3a581e5d0f78 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=goverlay-git
pkgver=0.1.3.r11.g1f00701
-pkgrel=1
+pkgrel=2
pkgdesc="An opensource project that aims to create a Graphical UI to help manage Linux overlays."
arch=('x86_64')
url="https://github.com/benjamimgois/goverlay"
license=('GPL3')
depends=('gtk2')
-makedepends=('git' 'lazarus' 'imagemagick')
+makedepends=('git' 'lazarus')
optdepends=('mangohud')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
@@ -25,23 +25,10 @@ build() {
--lazarusdir=/usr/lib/lazarus \
--build-all \
goverlay.lpi
-
- convert goverlay.ico[0] 256x256.png
- convert goverlay.ico[1] 128x128.png
- convert goverlay.ico[2] 64x64.png
- convert goverlay.ico[3] 48x48.png
- convert goverlay.ico[4] 32x32.png
- convert goverlay.ico[5] 16x16.png
}
package() {
cd "$srcdir/${pkgname%-git}"
install -Dm755 "${pkgname%-git}" -t "$pkgdir/usr/bin"
install -Dm644 "${pkgname%-git}.desktop" -t "$pkgdir/usr/share/applications"
-
- for icon_size in 16 32 48 64 128 256; do
- icons_dir=usr/share/icons/hicolor/${icon_size}x${icon_size}/apps
- install -d $pkgdir/$icons_dir
- install -m644 ${icon_size}x${icon_size}.png $pkgdir/$icons_dir/${pkgname%-git}.png
- done
}