blob: 79c0fe75daeef89c982ee8dcc6cddd4b3337b12e (
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: Pavel Sibal <entexsoft@gmail.com>
pkgname=xfce4-theme-switcher
pkgver=0.1
pkgrel=8
pkgdesc="Utility for fast switch betwen Xfce4 themes."
arch=('any')
url="https://gitlab.com/linux-stuffs/xfce4-theme-switcher"
license=('GPL3')
groups=('xfce4-goodies' 'xfce4-goodies-devel')
provides=("${pkgname}")
conflicts=("${pkgname}")
depends=('bash' 'xfce4-whiskermenu-plugin' 'coreutils' 'grep' 'sed' 'python3' 'conky' 'plank' 'xfce4-panel' 'gtk3' 'python-gobject>=3.38')
options=('!strip')
source=('https://gitlab.com/linux-stuffs/xfce4-theme-switcher/raw/master/distrib/xfce4-theme-switcher-0.1-8.tar.gz')
sha256sums=('SKIP')
package() {
cd "${srcdir}/${pkgname}"
./configure --prefix=/usr
make install DESTDIR="${pkgdir}"
mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
cp --no-preserve=ownership "${pkgdir}/usr/share/doc/${pkgname}/copyright" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|