archlinux: allow static libraries to be packaged

This commit is contained in:
Olivier MEDOC 2013-11-28 14:53:26 +01:00 committed by Marek Marczykowski-Górecki
parent f00c5acb98
commit 8cb51d76c9
2 changed files with 17 additions and 3 deletions

View File

@ -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=()

View File

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