diff options
-rw-r--r-- | community/alleyoop/PKGBUILD | 18 | ||||
-rw-r--r-- | community/alleyoop/alleyoop.install | 20 | ||||
-rw-r--r-- | community/gammu/PKGBUILD | 12 | ||||
-rw-r--r-- | community/intel-tbb/PKGBUILD | 11 | ||||
-rw-r--r-- | community/mtpaint/PKGBUILD | 19 | ||||
-rw-r--r-- | community/mtpaint/mtpaint.install | 9 | ||||
-rw-r--r-- | community/qtractor/PKGBUILD | 8 | ||||
-rw-r--r-- | community/setconf/PKGBUILD | 6 | ||||
-rw-r--r-- | community/xmlrpc-c/PKGBUILD | 14 | ||||
-rw-r--r-- | core/perl/PKGBUILD | 7 | ||||
-rw-r--r-- | mozilla-testing/iceweasel-libre/PKGBUILD | 44 | ||||
-rw-r--r-- | multilib/lib32-celt/PKGBUILD | 40 | ||||
-rw-r--r-- | testing/ed/PKGBUILD | 38 | ||||
-rw-r--r-- | testing/file/PKGBUILD | 34 | ||||
-rw-r--r-- | ~lukeshu/git-svn-abandon-git/PKGBUILD | 2 | ||||
-rw-r--r-- | ~lukeshu/redo/PKGBUILD | 2 |
16 files changed, 202 insertions, 82 deletions
diff --git a/community/alleyoop/PKGBUILD b/community/alleyoop/PKGBUILD index 895a91d77..9d2bdc078 100644 --- a/community/alleyoop/PKGBUILD +++ b/community/alleyoop/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 57801 2011-11-03 09:12:48Z arodseth $ +# $Id: PKGBUILD 61496 2012-01-02 02:13:47Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Angelo Theodorou <encelo@users.sourceforge.net> # Contributor: Lex Rivera aka x-demon <aur@x-demon.org> pkgname=alleyoop -pkgver=0.9.7 -pkgrel=3 -pkgdesc="A Valgrind front-end for the GNOME environment" +pkgver=0.9.8 +pkgrel=1 +pkgdesc="Valgrind front-end for the GNOME environment" arch=('x86_64' 'i686') url="http://alleyoop.sourceforge.net/" license=('GPL') @@ -13,12 +13,12 @@ depends=('valgrind' 'libgnomeui') makedepends=('intltool') install=alleyoop.install source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('b45ab041dea15cd0ae663183bef893c6') +sha256sums=('0b36fd3af83aa74d363a5d13414b7a38c3efabd2fce0fbeb2a8171998e0b6756') build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc + ./configure --prefix=/usr --sysconfdir=/etc #--disable-schemas-compile make } @@ -26,9 +26,9 @@ package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install - install -m755 -d "$pkgdir/usr/share/gconf/schemas" - gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \ - --domain alleyoop "$pkgdir"/etc/gconf/schemas/*.schemas + #install -dm755 "$pkgdir/usr/share/gconf/schemas" + #gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \ + # --domain alleyoop "$pkgdir"/etc/gconf/schemas/*.schemas rm -r "$pkgdir/etc" } diff --git a/community/alleyoop/alleyoop.install b/community/alleyoop/alleyoop.install index 16e3af018..f6a1886e7 100644 --- a/community/alleyoop/alleyoop.install +++ b/community/alleyoop/alleyoop.install @@ -1,19 +1,15 @@ -pkgname=alleyoop - -post_install() { - usr/sbin/gconfpkg --install ${pkgname} -} - -pre_remove() { - usr/sbin/gconfpkg --uninstall ${pkgname} +post_upgrade() { + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas + #update-desktop-database -q + #gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } -pre_upgrade() { - pre_remove $1 +post_install() { + post_upgrade } -post_upgrade() { - post_install $1 +post_remove() { + post_upgrade } # vim:set ts=2 sw=2 et: diff --git a/community/gammu/PKGBUILD b/community/gammu/PKGBUILD index 7ede3ead2..6fcfeab68 100644 --- a/community/gammu/PKGBUILD +++ b/community/gammu/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 52053 2011-07-19 20:30:49Z schiv $ +# $Id: PKGBUILD 61481 2012-01-01 10:15:29Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Corrado Primier <bardo@aur.archlinux.org> # Contributor: Aurelien Foret <orelien@chez.com> pkgname=gammu -pkgver=1.30.0 +pkgver=1.31.0 pkgrel=1 pkgdesc="GNU All Mobile Management Utilities" arch=('i686' 'x86_64') @@ -14,9 +14,9 @@ depends=('bluez' 'curl' 'libmysqlclient' 'postgresql-libs' 'python2' 'libusb') makedepends=('cmake' 'doxygen' 'mysql') optdepends=('dialog: support for the gammu-config script') -options=('!makeflags') -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2) -md5sums=('5bb061f1299e7ae8d38ecac1b8b11465') +#options=('!makeflags') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2") +md5sums=('9b1ff5d84730f025802b961ab9f26717') build() { cd "$srcdir/$pkgname-$pkgver" @@ -30,3 +30,5 @@ package() { make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: diff --git a/community/intel-tbb/PKGBUILD b/community/intel-tbb/PKGBUILD index b21ff6112..b730e44b3 100644 --- a/community/intel-tbb/PKGBUILD +++ b/community/intel-tbb/PKGBUILD @@ -1,15 +1,18 @@ +# $Id: PKGBUILD 61487 2012-01-01 12:33:54Z andrea $ +# Maintainer: # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Denis Martinez <deuns.martinez AT gmail.com> pkgname=intel-tbb -pkgver=4.0_20111003 +pkgver=4.0_20111130 pkgrel=1 -pkgdesc='An award-winning C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance.' +pkgdesc='An award-winning C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance' arch=('i686' 'x86_64') url='http://www.threadingbuildingblocks.org/' license=('GPL') -source=("http://threadingbuildingblocks.org/uploads/77/177/4.0%20update%201/tbb40_20111003oss_src.tgz") -md5sums=('7b5d94eb35a563b29ef402e0fd8f15c9') +depends=('gcc-libs') +source=("http://threadingbuildingblocks.org/uploads/77/180/4.0%20update%202/tbb40_20111130oss_src.tgz") +md5sums=('1e6926b21e865e79772119cd44fc3ad8') build() { cd tbb${pkgver/\./}oss diff --git a/community/mtpaint/PKGBUILD b/community/mtpaint/PKGBUILD index cae6deaeb..2aacb7fff 100644 --- a/community/mtpaint/PKGBUILD +++ b/community/mtpaint/PKGBUILD @@ -1,28 +1,27 @@ -# $Id: PKGBUILD 59671 2011-11-29 09:34:27Z arodseth $ +# $Id: PKGBUILD 61499 2012-01-02 02:35:06Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Roman Kyrylych <roman@archlinux.org> # Contributor: yosh64 <yosh64.at.gmail.dot.com> pkgname=mtpaint -pkgver=3.31 -pkgrel=7 -pkgdesc="A simple GTK2 painting program designed for creating icons and pixel based artwork" +pkgver=3.40 +pkgrel=1 +pkgdesc="Simple GTK2 paint program for creating icons and pixel based artwork" arch=('x86_64' 'i686') url="http://mtpaint.sourceforge.net/" license=('GPL3') -depends=('gtk2' 'giflib' 'openjpeg' 'bzip2' 'desktop-file-utils' 'glib2' 'freetype2') +depends=('gtk2' 'giflib' 'openjpeg' 'desktop-file-utils' 'lcms2') install=mtpaint.install source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2" - "libpng14.patch" - "mtpaint.install") -md5sums=('fbe34eb25f96b6092403115f1f6ab387' - 'f84245ae1e26bd734740306b09024bb8' - '1bd546a8efeae01e8fd8a5c7f213012e') + "libpng14.patch") +sha256sums=('ef321d2b404839c7b909bdf5283eb22a37fbdd35b4cc9e380ddc400573d7c890' + 'be51d45d1146d6c61d1c2c12d1712134da5048dd7314e2741ff336cac6838de3') build() { cd "$srcdir/$pkgname-$pkgver" patch -Np1 -i "$srcdir/libpng14.patch" ./configure --prefix=/usr --mandir=/usr/share/man/man1 man intl gif jpeg tiff + sed -i 's:-lpng:-lpng -lgif:' _conf.txt make } diff --git a/community/mtpaint/mtpaint.install b/community/mtpaint/mtpaint.install index b44de11aa..99a538dea 100644 --- a/community/mtpaint/mtpaint.install +++ b/community/mtpaint/mtpaint.install @@ -1,12 +1,11 @@ -post_install() { - post_upgrade -} - post_upgrade() { - echo "Updating desktop database" update-desktop-database -q } +post_install() { + post_upgrade +} + post_remove() { post_upgrade } diff --git a/community/qtractor/PKGBUILD b/community/qtractor/PKGBUILD index 59ff37802..d71dbdbe0 100644 --- a/community/qtractor/PKGBUILD +++ b/community/qtractor/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 61060 2011-12-21 12:38:09Z schiv $ +# $Id: PKGBUILD 61485 2012-01-01 11:40:37Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Philipp Überbacher <hollunder at gmx dot at> pkgname=qtractor -pkgver=0.5.2 +pkgver=0.5.3 pkgrel=1 pkgdesc="Audio/MIDI multitrack sequencer" arch=('i686' 'x86_64') @@ -13,8 +13,8 @@ depends=('qt' 'jack' 'slv2' 'libmad' 'liblo' 'libsamplerate' 'rubberband') makedepends=('ladspa' 'dssi') [ "$CARCH" = "i686" ] && optdepends=('dssi-vst: win32 VST support') -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('15a75fe7164b9670961af0ce9e689fdb') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('cae94dd21628f22351dec5521b5a564d') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/setconf/PKGBUILD b/community/setconf/PKGBUILD index ab8c8cddc..d1f7c2c41 100644 --- a/community/setconf/PKGBUILD +++ b/community/setconf/PKGBUILD @@ -1,7 +1,7 @@ -# $Id: PKGBUILD 61248 2011-12-26 01:05:59Z arodseth $ +# $Id: PKGBUILD 61489 2012-01-01 19:21:14Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> pkgname=setconf -pkgver=0.3 +pkgver=0.3.1 pkgrel=1 pkgdesc="Utility to easily change settings in Makefiles and other configuration files" arch=('x86_64' 'i686') @@ -10,7 +10,7 @@ license=('GPL') depends=('pcre' 'gc') makedepends=('shedskin>=0.1.2') source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tbz2") -sha256sums=('94d37bcc74d59dfa60770308e2ab3b669dc2e0716a23fda584bf71cf037f1183') +sha256sums=('1055757af5dc5ecb529f918f9e601552f24caca8ca08833a52e4e3a1243cbd01') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/xmlrpc-c/PKGBUILD b/community/xmlrpc-c/PKGBUILD index 69ebd635d..66697bd6d 100644 --- a/community/xmlrpc-c/PKGBUILD +++ b/community/xmlrpc-c/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 49552 2011-06-18 07:22:08Z andrea $ +# $Id: PKGBUILD 61501 2012-01-02 03:26:41Z daenyth $ # Maintainer: Daenyth <Daenyth+Arch [at] gmail [dot] com> # Contributor: Pierre Schmitz <pierre@archlinux.de> # Contributor: Vitaliy Berdinskikh <skipper13@root.ua> pkgname=xmlrpc-c -pkgver=1858 +pkgver=2222 pkgrel=1 pkgdesc='This library provides a modular implementation of XML-RPC for C and C++' arch=('i686' 'x86_64') @@ -13,14 +13,15 @@ license=('custom:xmlrpc-c') depends=('curl' 'libxml2' 'gcc-libs' 'zlib') makedepends=('libtool') options=('!makeflags' '!libtool') -source=("ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.bz2") -md5sums=('2bd41d1827ebd12ca8f0b9ef0b015228') +source=("ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz") +md5sums=('5822ea50f50fb86b5f211ec6bd820e5e') build() { [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC" - cd $srcdir/$pkgname + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr \ + --mandir=/usr/share/man \ --enable-libxml2-backend \ --disable-cgi-server \ --disable-abyss-server \ @@ -31,10 +32,9 @@ build() { } package() { - cd $srcdir/$pkgname + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install install -m 644 -D doc/COPYING $pkgdir/usr/share/licenses/${pkgname}/LICENSE - mv $pkgdir/usr/man $pkgdir/usr/share/man } # vim:set ts=2 sw=2 et: diff --git a/core/perl/PKGBUILD b/core/perl/PKGBUILD index 91a2e33d5..07a8464b3 100644 --- a/core/perl/PKGBUILD +++ b/core/perl/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 143804 2011-11-29 13:33:00Z stephane $ +# $Id: PKGBUILD 145797 2012-01-01 18:30:05Z dreisner $ # Maintainer: Angel Velasquez <angvp@archlinux.org> # Contributor: kevin <kevin.archlinux.org> # Contributor: judd <jvinet.zeroflux.org> # Contributor: francois <francois.archlinux.org> pkgname=perl pkgver=5.14.2 -pkgrel=4 +pkgrel=5 pkgdesc="A highly capable, feature-rich programming language" arch=(i686 x86_64) license=('GPL' 'PerlArtistic') @@ -37,9 +37,6 @@ build() { arch_opts="" fi - # remove rpath FS#27173 - sed -i 's#xxx="-Wl,-rpath,$shrpdir"##' Configure - ./Configure -des -Dusethreads -Duseshrplib -Doptimize="${CFLAGS}" \ -Dprefix=/usr -Dinstallprefix=${pkgdir}/usr -Dvendorprefix=/usr \ -Dprivlib=/usr/share/perl5/core_perl \ diff --git a/mozilla-testing/iceweasel-libre/PKGBUILD b/mozilla-testing/iceweasel-libre/PKGBUILD index d81800ab5..a9c8fdd76 100644 --- a/mozilla-testing/iceweasel-libre/PKGBUILD +++ b/mozilla-testing/iceweasel-libre/PKGBUILD @@ -11,7 +11,7 @@ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } _pkgname=iceweasel pkgname=iceweasel-libre pkgver=${_debver}.${_debrel} -pkgrel=1 +pkgrel=2 pkgdesc="A libre version of Debian Iceweasel, the browser based on Mozilla Firefox." arch=('i586' 'i686' 'x86_64' 'mips64el') @@ -37,14 +37,17 @@ depends=( makedepends=( 'autoconf2.13' 'diffutils' + 'imagemagick' 'libidl2' 'librsvg' + 'libxslt' 'mesa' 'p7zip-libre' 'pkg-config' 'python2' 'quilt' 'wireless_tools' + 'xorg-server-xvfb' 'yasm' 'zip' ) @@ -60,6 +63,7 @@ source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.bz2" region.properties vendor.js) +if [ -z "$_pkgname" ]; then _pkgname=$pkgname; fi if [ "$_pkgname" != "$pkgname" ]; then provides+=("$_pkgname") conflicts+=("$_pkgname") @@ -91,18 +95,22 @@ build() { cd "$srcdir/$_pkgname-$pkgver" cp "$srcdir/mozconfig" .mozconfig # Load our build config, disable SafeSearch - patch -Np1 -i "$srcdir/iceweasel-install-dir.patch" # install to /usr/lib/$pkgname + patch -Np1 -i "$srcdir/iceweasel-install-dir.patch" # install to /usr/lib/$_pkgname patch -Np1 -i "$srcdir/xulrunner-copy-stub.patch" # small fix patch -Np1 -i "$srcdir/libre.patch" cp -f ${srcdir}/region.properties ./browser/locales/en-US/chrome/browser-region/ + if [[ $(check_buildenv ccache) = "y" && $(check_option ccache) != "n" ]]; then + echo "ac_add_options --with-ccache=`which ccache`" >> .mozconfig + fi + # Fix PRE_RELEASE_SUFFIX sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \ browser/base/Makefile.in - export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/$pkgname" + export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/$_pkgname" export PYTHON="/usr/bin/python2" - + LD_PRELOAD="" /usr/bin/Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 :99 & LD_PRELOAD="" DISPLAY=:99 make -j1 -f client.mk profiledbuild MOZ_MAKE_FLAGS="$MAKEFLAGS" kill $! || true @@ -112,29 +120,33 @@ package() { cd "$srcdir/$_pkgname-$pkgver" make -j1 -f client.mk DESTDIR="$pkgdir" install - install -m644 "$srcdir"/vendor.js "$pkgdir/usr/lib/$pkgname/defaults/pref" + install -m644 "$srcdir"/vendor.js "$pkgdir/usr/lib/$_pkgname/defaults/pref" - brandingdir="debian/branding" - for i in 16x16 32x32 64x64; do - install -Dm644 "$brandingdir/default${i/x*/}.png" "$pkgdir/usr/share/icons/hicolor/$i/apps/$pkgname.png" + # For some crazy reason, pgo moves the branding (and many other non-object + # files) to odd locations in the ff-pgo directory. + _brandingdir=debian/branding + brandingdir=ff-pgo/dist/branding + for i in 16x16 32x32 48x48; do + install -Dm644 "$brandingdir/default${i/x*/}.png" "$pkgdir/usr/share/icons/hicolor/$i/apps/$_pkgname.png" done - install -Dm644 "$brandingdir/iceweasel_icon.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/iceweasel.svg" + install -Dm644 "$brandingdir/mozicon128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/$_pkgname.png" + install -Dm644 "$_brandingdir/iceweasel_icon.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/iceweasel.svg" install -d "$pkgdir/usr/share/applications" install -m644 debian/iceweasel.desktop "$pkgdir/usr/share/applications" #install -m644 debian/iceweasel-safe.desktop "$pkgdir/usr/share/applications" - rm -rf "$pkgdir/usr/lib/$pkgname/"{dictionaries,hyphenation,searchplugins,plugins} - ln -sf /usr/share/hunspell "$pkgdir/usr/lib/$pkgname/dictionaries" - ln -sf /usr/share/hyphen "$pkgdir/usr/lib/$pkgname/hyphenation" - ln -sf /usr/lib/mozilla/plugins "$pkgdir/usr/lib/$pkgname/plugins" - ln -sf /usr/lib/mozilla/searchplugins "$pkgdir/usr/lib/$pkgname/searchplugins" + rm -rf "$pkgdir/usr/lib/$_pkgname/"{dictionaries,hyphenation,searchplugins,plugins} + ln -sf /usr/share/hunspell "$pkgdir/usr/lib/$_pkgname/dictionaries" + ln -sf /usr/share/hyphen "$pkgdir/usr/lib/$_pkgname/hyphenation" + ln -sf /usr/lib/mozilla/plugins "$pkgdir/usr/lib/$_pkgname/plugins" + ln -sf /usr/lib/mozilla/searchplugins "$pkgdir/usr/lib/$_pkgname/searchplugins" # We don't want the development stuff - rm -rf "$pkgdir"/usr/{include,lib/$pkgname-devel,share/idl} + rm -rf "$pkgdir"/usr/{include,lib/$_pkgname-devel,share/idl} # Workaround for now: https://bugzilla.mozilla.org/show_bug.cgi?id=658850 - ln -sf $pkgname "$pkgdir/usr/lib/$pkgname/$pkgname-bin" + ln -sf $_pkgname "$_pkgdir/usr/lib/$_pkgname/$_pkgname-bin" } md5sums=('bd656a24d0ba3d4ca7b68aca8081a07d' diff --git a/multilib/lib32-celt/PKGBUILD b/multilib/lib32-celt/PKGBUILD new file mode 100644 index 000000000..8c4124eb7 --- /dev/null +++ b/multilib/lib32-celt/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: SpepS <dreamspepser at yahoo dot it> +# Contributor: see .contrib + +_realname=celt +pkgname=lib32-$_realname +pkgver=0.11.1 +pkgrel=1 +pkgdesc='Low-latency audio communication codec (32 bit)' +arch=('x86_64') +url='http://www.celt-codec.org' +license=('BSD') +depends=('lib32-glibc' "$_realname=$pkgver") +makedepends=('gcc-multilib') +options=('!libtool') +source=("http://downloads.xiph.org/releases/$_realname/$_realname-$pkgver.tar.gz") +md5sums=('94fe4acd241da8702c295bcd13a555e6') + +build() { + cd "$srcdir/$_realname-$pkgver" + + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + ./configure --prefix=/usr --libdir=/usr/lib32 + make -C libcelt +} + +package() { + cd "$srcdir/$_realname-$pkgver" + + make DESTDIR="$pkgdir" install-pkgconfigDATA + make -C libcelt DESTDIR="$pkgdir" install + + # remove unneeded stuff + rm -rf "$pkgdir/usr/include" +} + +# vim:set ts=2 sw=2 et: diff --git a/testing/ed/PKGBUILD b/testing/ed/PKGBUILD new file mode 100644 index 000000000..f6216b752 --- /dev/null +++ b/testing/ed/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 145806 2012-01-01 23:26:54Z dreisner $ +# Maintainer: Dave Reisner <dreisner@archlinux.org> +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=ed +pkgver=1.6 +pkgrel=1 +pkgdesc="A POSIX-compliant line-oriented text editor" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.gnu.org/software/ed/ed.html" +depends=('glibc' 'sh') +options=('!emptydirs') +source=(ftp://ftp.gnu.org/gnu/ed/${pkgname}-${pkgver}.tar.gz) +md5sums=('9a78593decccaa889523aa4bb555ed4b') + +build() { + cd "$pkgname-$pkgver" + + ./configure --prefix=/ \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + "CFLAGS=$CFLAGS" \ + "LDFLAGS=$LDFLAGS" + + make +} + +check() { + make -C "$pkgname-$pkgver" check +} + +package() { + make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install + + # nuke info pages + rm -r "$pkgdir/usr/share/info" +} diff --git a/testing/file/PKGBUILD b/testing/file/PKGBUILD new file mode 100644 index 000000000..ee50d610f --- /dev/null +++ b/testing/file/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 145811 2012-01-02 01:45:52Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: Andreas Radke <andyrtr@archlinux.org> + +pkgname=file +pkgver=5.10 +pkgrel=1 +pkgdesc="File type identification utility" +arch=('i686' 'x86_64') +license=('custom') +groups=('base') +url="http://www.darwinsys.com/file/" +depends=('glibc' 'zlib') +options=('!libtool') +source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('4cea34b087b060772511e066e2038196') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's#\$(datadir)/misc#\$(datadir)#' configure + + ./configure --prefix=/usr --datadir=/usr/share/file + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR=${pkgdir} install + install -dm755 ${pkgdir}/usr/share/misc + ln -s ../file/magic.mgc ${pkgdir}/usr/share/misc + + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING +} diff --git a/~lukeshu/git-svn-abandon-git/PKGBUILD b/~lukeshu/git-svn-abandon-git/PKGBUILD index 51cd83817..eb5d94402 100644 --- a/~lukeshu/git-svn-abandon-git/PKGBUILD +++ b/~lukeshu/git-svn-abandon-git/PKGBUILD @@ -4,7 +4,7 @@ _pkgname=git-svn-abandon pkgname=$_pkgname-git provides=($_pkgname) conflicts=($_pkgname) -pkgver=20111224 +pkgver=20120101 pkgrel=1 pkgdesc="" arch=('any') diff --git a/~lukeshu/redo/PKGBUILD b/~lukeshu/redo/PKGBUILD index 95e75dd0e..fa9bdefc2 100644 --- a/~lukeshu/redo/PKGBUILD +++ b/~lukeshu/redo/PKGBUILD @@ -3,7 +3,7 @@ pkgname=redo pkgver=0.06 pkgrel=1 -pkgdesc="A competitor to make based on essays by DJB.") +pkgdesc="A competitor to make based on essays by DJB." arch=('any') url="https://github.com/apenwarr/$pkgname" license=('GPL2') |