blob: c62f8a3a9c36613ccc3342c767f2c2fdddfa4d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
pkgname=elementary-xfce-icons-git
pkgver=0.r948.b09ff75
pkgrel=1
pkgdesc='Elementary icon-theme with improved Xfce support'
url='https://github.com/shimmerproject/elementary-xfce'
arch=('any')
license=('GPL2')
depends=('gtk-update-icon-cache')
makedepends=('git')
conflicts=('elementary-xfce-icons')
install=elementary-xfce-icons-git.install
source=('git+https://github.com/shimmerproject/elementary-xfce')
md5sums=('SKIP')
pkgver() {
cd elementary-xfce
git describe | sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
package() {
mkdir -p "$pkgdir/usr/share/icons"
cd elementary-xfce
find ./ -type d -name "elementary-xfce*" -execdir cp -r {} "$pkgdir"/usr/share/icons/ \;
cd "$pkgdir"/usr/share/icons
find ./ -type f \( \
-name "AUTHORS" \
-o -name "CONTRIBUTORS" \
-o -name "LICENSE" \
\) \
-delete
}
|