archlinux: allow static libraries to be packaged

release2 mm_8cb51d76
Olivier MEDOC 11 years ago committed by Marek Marczykowski-Górecki
parent f00c5acb98
commit 8cb51d76c9

@ -6,7 +6,7 @@
# Maintainer: Olivier Medoc <o_medoc@yahoo.fr> # Maintainer: Olivier Medoc <o_medoc@yahoo.fr>
pkgname=qubes-vm-utils pkgname=qubes-vm-utils
pkgver=`cat version` pkgver=`cat version`
pkgrel=4 pkgrel=8
epoch= epoch=
pkgdesc="Common Linux files for Qubes VM." pkgdesc="Common Linux files for Qubes VM."
arch=("x86_64") arch=("x86_64")
@ -21,8 +21,8 @@ provides=()
conflicts=() conflicts=()
replaces=() replaces=()
backup=() backup=()
options=() options=('staticlibs')
install= install=PKGBUILD-qubes-vm-utils.install
changelog= changelog=
source=() source=()

@ -0,0 +1,14 @@
## arg 1: the new package version
post_install() {
ldconfig
}
post_upgrade() {
ldconfig
}
post_remove() {
ldconfig
}
Loading…
Cancel
Save