diff options
-rw-r--r-- | abs/core-testing/local-website/PKGBUILD | 2 | ||||
-rw-r--r-- | abs/core-testing/local-website/htdocs/fuppes.php | 2 | ||||
-rw-r--r-- | abs/core-testing/ntfs-3g/PKGBUILD | 3 | ||||
-rw-r--r-- | abs/core-testing/ntfs-3g/ntfs-3g.install | 15 |
4 files changed, 19 insertions, 3 deletions
diff --git a/abs/core-testing/local-website/PKGBUILD b/abs/core-testing/local-website/PKGBUILD index 6ce813c..a47c062 100644 --- a/abs/core-testing/local-website/PKGBUILD +++ b/abs/core-testing/local-website/PKGBUILD @@ -1,6 +1,6 @@ pkgname=local-website pkgver=2 -pkgrel=7 +pkgrel=8 pkgdesc="Contents of http://localhost" arch=(i686 x86_64) license=('GPL') diff --git a/abs/core-testing/local-website/htdocs/fuppes.php b/abs/core-testing/local-website/htdocs/fuppes.php index f082f31..44129d2 100644 --- a/abs/core-testing/local-website/htdocs/fuppes.php +++ b/abs/core-testing/local-website/htdocs/fuppes.php @@ -1,4 +1,4 @@ <?php $HTTP_HOST = getenv('HTTP_HOST'); -header("Location: http://$HTTP_HOST:81/"); +header("Location: http://$HTTP_HOST:8100/"); ?> diff --git a/abs/core-testing/ntfs-3g/PKGBUILD b/abs/core-testing/ntfs-3g/PKGBUILD index 9529a86..a8ae6e5 100644 --- a/abs/core-testing/ntfs-3g/PKGBUILD +++ b/abs/core-testing/ntfs-3g/PKGBUILD @@ -4,11 +4,12 @@ pkgname=ntfs-3g pkgver=2009.4.4 -pkgrel=2 +pkgrel=3 pkgdesc="Stable read and write NTFS driver" url="http://www.ntfs-3g.org/" arch=('i686' 'x86_64') license=('GPL2') +install=ntfs-3g.install depends=('glibc') makedepends=('pkgconfig') options=('!libtool') diff --git a/abs/core-testing/ntfs-3g/ntfs-3g.install b/abs/core-testing/ntfs-3g/ntfs-3g.install new file mode 100644 index 0000000..ad8cc1b --- /dev/null +++ b/abs/core-testing/ntfs-3g/ntfs-3g.install @@ -0,0 +1,15 @@ +# arg 1: the new package version +post_install() { + ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs +} +# arg 1: the new package version +# arg 2: the old package version + +# arg 1: the old package version +post_remove() { + rm -fr /sbin/mount.ntfs +} + +op=$1 +shift +$op $* |