summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfrederik2017-05-30 18:26:38 +0200
committerfrederik2017-05-30 18:26:38 +0200
commit7e857f09018c8a074d5538cab35df8c7a5528412 (patch)
tree2116adf93e303febe0d9d4ff241fedf6dc4f48e8
parent22093ac53e021148e056567ddc8e415920d8e632 (diff)
downloadaur-7e857f09018c8a074d5538cab35df8c7a5528412.tar.gz
improve PKGBUILD
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2a2abe7d2af3..ff0d23599652 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,3 +1,5 @@
+# Generated by mksrcinfo v8
+# Tue May 30 16:26:31 UTC 2017
pkgbase = gimp-plugin-separate+
pkgdesc = Provides some useful color-management functions for the GIMP
pkgver = 0.5.8
@@ -13,7 +15,7 @@ pkgbase = gimp-plugin-separate+
optdepends = eci-icc: ICC profiles from ECI
replaces = gimp-plugin-separate
source = http://dl.sourceforge.jp/separate-plus/47873/separate+-0.5.8.zip
- sha1sums = ca109eb5c85e91f062e747a710142888efcf85b8
+ sha512sums = 1e2ecf00ff6e604d0a04337ebf25ca9370e2d46d302d3fca7b7df577c37983f870704ad6018c03152bcba3bcddda59a4acceb35b3ba5d0bfd589fa1e99413aa3
pkgname = gimp-plugin-separate+
diff --git a/PKGBUILD b/PKGBUILD
index 0caa88138586..2c5c24931cd5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,10 +13,9 @@ depends=('gimp' 'lcms')
makedepends=('unzip')
optdepends=('adobe-icc: ICC profiles from Adobe'
'eci-icc: ICC profiles from ECI')
-source=("http://dl.sourceforge.jp/separate-plus/47873/separate+-${pkgver}.zip")
-sha1sums=('ca109eb5c85e91f062e747a710142888efcf85b8')
-
replaces=('gimp-plugin-separate')
+source=(http://dl.sourceforge.jp/separate-plus/47873/separate+-${pkgver}.zip)
+sha512sums=('1e2ecf00ff6e604d0a04337ebf25ca9370e2d46d302d3fca7b7df577c37983f870704ad6018c03152bcba3bcddda59a4acceb35b3ba5d0bfd589fa1e99413aa3')
build() {
cd "${srcdir}/separate+-${pkgver}"
@@ -26,8 +25,8 @@ build() {
package() {
cd "${srcdir}/separate+-${pkgver}"
- make PREFIX="${pkgdir}"/usr install
+ make PREFIX="${pkgdir}/usr" install
- install -d "${pkgdir}"/usr/share/gimp/2.0/scripts
- install -m644 sample-scripts/* "${pkgdir}"/usr/share/gimp/2.0/scripts
+ install -d "${pkgdir}/usr/share/gimp/2.0/scripts"
+ install -m644 sample-scripts/* "${pkgdir}/usr/share/gimp/2.0/scripts"
}