mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
33 lines
869 B
Bash
33 lines
869 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=hal-cups-utils
|
|
pkgver=0.6.19
|
|
pkgrel=2
|
|
pkgdesc="Cups management via HAL UDIs"
|
|
url="http://packages.ubuntu.com/gutsy/admin/hal-cups-utils"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('hal' 'dbus-core' 'system-config-printer-common' 'glib2')
|
|
source=(http://fedorahosted.org/releases/h/a/hal-cups-utils/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('58e1c8f5597dd39e57dcf3c4aabe60f8')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/hal/scripts/
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
} |