summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2016-10-15 00:12:41 +0800
committerTing-Wei Lan <lantw44@gmail.com>2016-10-15 00:18:56 +0800
commit8bf529061c403a775635e9cdededc1446de72d55 (patch)
treeea828716c6bead151f58d30683104f30d217da63
parent5ef3ab4714d65884941d245b4366992af06381a8 (diff)
downloadAUR4-PKGBUILD-8bf529061c403a775635e9cdededc1446de72d55.tar.gz
AUR4-PKGBUILD-8bf529061c403a775635e9cdededc1446de72d55.tar.zst
AUR4-PKGBUILD-8bf529061c403a775635e9cdededc1446de72d55.zip
mingw-w64-{{adwaita,hicolor}-icon-theme,libepoxy}: Sync striping scripts
Use the same striping scripts in all MinGW packages maintained by me.
-rw-r--r--mingw-w64-adwaita-icon-theme/PKGBUILD6
-rw-r--r--mingw-w64-hicolor-icon-theme/PKGBUILD6
-rw-r--r--mingw-w64-libepoxy/.SRCINFO4
-rw-r--r--mingw-w64-libepoxy/PKGBUILD8
4 files changed, 13 insertions, 11 deletions
diff --git a/mingw-w64-adwaita-icon-theme/PKGBUILD b/mingw-w64-adwaita-icon-theme/PKGBUILD
index a62198f..aec9837 100644
--- a/mingw-w64-adwaita-icon-theme/PKGBUILD
+++ b/mingw-w64-adwaita-icon-theme/PKGBUILD
@@ -34,9 +34,9 @@ package() {
for _arch in ${_architectures}; do
cd "build-${_arch}"
make DESTDIR="$pkgdir" install
- find "$pkgdir/usr/${_arch}" -name '*.exe' -o -name '*.bat' -o -name '*.def' -o -name '*.exp' -o -name '*.manifest' | xargs -rtl1 rm
- find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtl1 ${_arch}-strip --strip-unneeded
- find "$pkgdir/usr/${_arch}" -name '*.a' | xargs -rtl1 ${_arch}-strip -g
+ find "$pkgdir/usr/${_arch}" -name '*.exe' | xargs -rtL1 ${_arch}-strip
+ find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtL1 ${_arch}-strip --strip-unneeded
+ find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs -rtL1 ${_arch}-strip -g
cd ..
done
}
diff --git a/mingw-w64-hicolor-icon-theme/PKGBUILD b/mingw-w64-hicolor-icon-theme/PKGBUILD
index 2c7c8e3..b4f40fd 100644
--- a/mingw-w64-hicolor-icon-theme/PKGBUILD
+++ b/mingw-w64-hicolor-icon-theme/PKGBUILD
@@ -30,9 +30,9 @@ package() {
for _arch in ${_architectures}; do
cd "build-${_arch}"
make DESTDIR="$pkgdir" install
- find "$pkgdir/usr/${_arch}" -name '*.exe' -o -name '*.bat' -o -name '*.def' -o -name '*.exp' -o -name '*.manifest' | xargs -rtl1 rm
- find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtl1 ${_arch}-strip --strip-unneeded
- find "$pkgdir/usr/${_arch}" -name '*.a' | xargs -rtl1 ${_arch}-strip -g
+ find "$pkgdir/usr/${_arch}" -name '*.exe' | xargs -rtL1 ${_arch}-strip
+ find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtL1 ${_arch}-strip --strip-unneeded
+ find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs -rtL1 ${_arch}-strip -g
cd ..
done
}
diff --git a/mingw-w64-libepoxy/.SRCINFO b/mingw-w64-libepoxy/.SRCINFO
index 1573509..3361bf0 100644
--- a/mingw-w64-libepoxy/.SRCINFO
+++ b/mingw-w64-libepoxy/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Fri Oct 14 16:17:50 UTC 2016
pkgbase = mingw-w64-libepoxy
pkgdesc = A library for handling OpenGL function pointer management for you (mingw-w64)
pkgver = 1.3.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/anholt/libepoxy
arch = any
license = MIT
diff --git a/mingw-w64-libepoxy/PKGBUILD b/mingw-w64-libepoxy/PKGBUILD
index 0a779fe..5a9d08c 100644
--- a/mingw-w64-libepoxy/PKGBUILD
+++ b/mingw-w64-libepoxy/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=mingw-w64-libepoxy
pkgver=1.3.1
-pkgrel=2
+pkgrel=3
pkgdesc="A library for handling OpenGL function pointer management for you (mingw-w64)"
arch=(any)
url="https://github.com/anholt/libepoxy"
@@ -34,9 +34,9 @@ package() {
for _arch in ${_architectures}; do
cd "build-${_arch}"
make DESTDIR="$pkgdir" install
- find "$pkgdir/usr/${_arch}" -name '*.exe' -o -name '*.bat' -o -name '*.def' -o -name '*.exp' -o -name '*.manifest' | xargs -rtl1 rm
- find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtl1 ${_arch}-strip --strip-unneeded
- find "$pkgdir/usr/${_arch}" -name '*.a' | xargs -rtl1 ${_arch}-strip -g
+ find "$pkgdir/usr/${_arch}" -name '*.exe' | xargs -rtL1 ${_arch}-strip
+ find "$pkgdir/usr/${_arch}" -name '*.dll' | xargs -rtL1 ${_arch}-strip --strip-unneeded
+ find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs -rtL1 ${_arch}-strip -g
cd ..
done
}