diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-08-27 07:45:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-08-27 08:40:06 +0000 |
commit | e3d8cfe3f08df6649c56b637cead8efe622220f1 (patch) | |
tree | 8d4b5cbd7fd8ee40fb5f3eea085d332406093e54 /main/roundcubemail/APKBUILD | |
parent | c65b569cafe10d39e2073ecb6444e6d25df2e8ff (diff) | |
download | aports-e3d8cfe3f08df6649c56b637cead8efe622220f1.tar.bz2 aports-e3d8cfe3f08df6649c56b637cead8efe622220f1.tar.xz |
main/roundcubemail: move configs to /etc/roundcube
We want config to be saved on lbu commit and we want the config files
to be "protected" so they dont gets replaced on upgrades.
Diffstat (limited to 'main/roundcubemail/APKBUILD')
-rw-r--r-- | main/roundcubemail/APKBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/main/roundcubemail/APKBUILD b/main/roundcubemail/APKBUILD index 3a22dd13f3..ff5e07aa5b 100644 --- a/main/roundcubemail/APKBUILD +++ b/main/roundcubemail/APKBUILD @@ -1,10 +1,11 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=roundcubemail pkgver=0.4 -pkgrel=0 +pkgrel=1 pkgdesc="A PHP web-based mail client" url="http://www.roundcube.net" license="GPL" +install="$pkgname.post-upgrade" depends="php php-imap php-xml php-json" makedepends="" source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" @@ -15,5 +16,10 @@ build () mkdir -p "${_instdir}" cd "${_instdir}" cp -ra "$srcdir"/roundcubemail-$pkgver/* . + # install config in /etc/roundcube so config files are not overwritten + # on upgrades + mkdir -p "$pkgdir"/etc/ + mv config "$pkgdir"/etc/roundcube + ln -s /etc/roundcube config } md5sums="6e5d2313087ce1e1209eb0f4fd71beab roundcubemail-0.4.tar.gz" |