blob: f4479e99ab16f8e006939158d0cb518924a3a212 (
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
|
# Maintainer: Chanathip Srithanrat <axesd9@gmail.com>
pkgname=mcos-mjv-gtk-theme
pkgver=1.3
pkgrel=2
pkgdesc='McOS-MJV GTK Theme'
arch=('any')
url='https://www.opendesktop.org/p/1241688/'
license=('GPL')
depends=('gtk-engine-murrine')
# Hash and Timestamp
_p="var \(hash = '\(.*\)\|timetamp = '\(.*\)\)';"
read _s _t <<< $(echo -n $(curl -s $url | sed -n "s/$_p/\2\3/p" | head -n2))
source=("https://dl.opendesktop.org/api/files/download/id/1537831784/s/$_s/t/$_t/$pkgname-$pkgver.tar.xz")
md5sums=('1aed15c46dd14ef1aac31d16f7b8a048')
prepare() {
mv McOS-MJV-Gnome-3.30 McOS-MJV
rm McOS-MJV/COPYING
rm McOS-MJV/READ\ ME
}
package() {
find */ -type f -exec install -Dm644 '{}' $pkgdir/usr/share/themes/'{}' \;
}
|