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>
pkgname=qubes-vm-utils
pkgver=`cat version`
pkgrel=4
pkgrel=8
epoch=
pkgdesc="Common Linux files for Qubes VM."
arch=("x86_64")
@ -21,8 +21,8 @@ provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
options=('staticlibs')
install=PKGBUILD-qubes-vm-utils.install
changelog=
source=()

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