blob: 166163b7d19b08a399a50a7fd04d756bb6b0c81b (
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: zoorat <zoorat [at] protonmail [dot] com>
# Contributor: Jeremy Ruten <jeremy.ruten@gmail.com>
# Contributor: TDY <tdy@archlinux.info>
# Contributor: Dmitry N.Shilov <stormblast@land.ru>
pkgname=xcursor-human
pkgver=0.6
pkgrel=5
pkgdesc="Ubuntu's default cursor theme"
arch=('any')
url="https://launchpad.net/human-cursors-theme/"
license=('CCPL:by-sa')
makedepends=('python')
source=(https://launchpad.net/ubuntu/+archive/primary/+files/human-cursors-theme_"$pkgver".tar.gz
index.theme)
sha256sums=('28278807df05a8b305907257ed34f172e3aa849ef978cfade077131ffdde8424'
'59aebd9e2502cb5f6e445b57b2d7bba5f2382989ca064805b9570b57870a3c6b')
package() {
cd "$srcdir/human-cursors-theme-$pkgver"
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
install -Dm644 ../index.theme "$pkgdir/usr/share/icons/Human/index.theme"
rm -rf "$pkgdir/usr/lib"
}
|