mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 09:52:13 +08:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
pkgname=system-config-printer
|
|
pkgver=1.5.8
|
|
pkgrel=1
|
|
pkgdesc="A CUPS printer configuration tool and status applet"
|
|
url="http://cyberelk.net/tim/software/system-config-printer/"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('python3-pycups' 'python3-dbus' 'python3-pycurl' 'python3-requests' 'python3-gobject' 'gtk3'
|
|
'python3-cairo' 'libnotify')
|
|
makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
|
|
optdepends=('libgnome-keyring: password management'
|
|
'pysmbc: SMB browser support')
|
|
source=(https://github.com/zdohnal/${pkgname}/archive/${pkgver}.tar.gz)
|
|
md5sums=('69b4f36478abcc0c745bdc23abb03246')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./bootstrap
|
|
./configure --prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc \
|
|
--with-udevdir=/usr/lib/udev --with-udev-rules
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# Compile *.pyc
|
|
find "${pkgdir}" -name '*.py' -exec python3 -mpy_compile {} +
|
|
# Compile *.pyo
|
|
find "${pkgdir}" -name '*.py' -exec python3 -O -mpy_compile {} +
|
|
|
|
# new cups 2.0.0 service naming
|
|
sed -i "s|cups.socket|org.cups.cupsd.socket|g" ${pkgdir}/usr/lib/systemd/system/configure-printer@.service
|
|
}
|