-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
26 lines (22 loc) · 851 Bytes
/
PKGBUILD
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
# Maintainer: BadBoy <[email protected]>
pkgname='oxygen-cursors'
pkgver='v1.0.0'
pkgrel='1'
pkgdesc='Beautiful Cursors themes'
arch=('any')
url='https://github.com/wo2ni/Oxygen-Cursors'
license=('GPL3')
depends=('lxappearance' 'libx11' 'libxcursor' 'libpng')
source=("https://github.com/wo2ni/Oxygen-Cursors/releases/download/${pkgver}/${pkgname}.tar.bz2"
)
sha256sums=('b87ee63366bfe45e462d0e090971d2977a7bf4e0ed3ffeba3c8fbeb910fb9c81')
package() {
msg 'This free Beautiful cursors themes'
for i in "${pkgname}"/*
do
page=$(echo ${i}|cut -d '/' -f '2')
install -dm755 "${i}" "${pkgdir}"/usr/share/icons/"${page}"/cursors
install -Dm644 "${srcdir}/${i}"/*theme "${pkgdir}"/usr/share/icons/"${page}"
install -Dm644 "${srcdir}/${i}"/cursors/* "${pkgdir}"/usr/share/icons/"${page}"/cursors
done
}