diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-04-10 14:26:31 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-04-10 14:26:31 -0300 |
commit | 0281f473276b0a6278686a8ecaaf10b39f1d3828 (patch) | |
tree | 5556a86c4d8c5c7d687aeadbec48ca5a1ce19d7b /social | |
parent | 331d47322498c7ea36f5535c566eecd0e82a8916 (diff) | |
parent | 3db2f39f6ac41f10a4aabe33b4d4ee7b97a9fbef (diff) |
Merge branch 'master' of ssh://gparabola/abslibre
Diffstat (limited to 'social')
-rw-r--r-- | social/hunspell-pt-br/.directory | 2 | ||||
-rw-r--r-- | social/hunspell-pt-br/PKGBUILD | 27 | ||||
-rwxr-xr-x | social/mednafen-wip/PKGBUILD | 31 |
3 files changed, 60 insertions, 0 deletions
diff --git a/social/hunspell-pt-br/.directory b/social/hunspell-pt-br/.directory new file mode 100644 index 000000000..dcad2ff51 --- /dev/null +++ b/social/hunspell-pt-br/.directory @@ -0,0 +1,2 @@ +[Dolphin] +Timestamp=2012,4,7,5,22,50 diff --git a/social/hunspell-pt-br/PKGBUILD b/social/hunspell-pt-br/PKGBUILD new file mode 100644 index 000000000..35e1dc887 --- /dev/null +++ b/social/hunspell-pt-br/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Daniel Felipe Reis Apolinario <dapolinario@gmail.com> +# Contributor: Bernardo Barros <bernardobarros@NOSPAM.gmail.com> +# Contributor: Robson R S Peixoto <robsonpeixoto@gmail.com> +# Maintainer (Parabola): André Silva <andre.paulista@adinet.com.uy> + +pkgname=hunspell-pt-br +pkgver=2.0.9 +pkgrel=1 +pkgdesc="Portuguese (Brazil) hunspell dictionary" +arch=(any) +url="http://www.broffice.org/verortografico/" +license=('LGPL-2.1') +optdepends=('hunspell: the spell checking libraries and apps') +source=(http://www.broffice.org/files/Vero_pt_BR_V209AOC.oxt) + +build() { + cd ${srcdir} + install -D -m644 pt_BR.dic $pkgdir/usr/share/hunspell/pt_BR.dic + install -D -m644 pt_BR.aff $pkgdir/usr/share/hunspell/pt_BR.aff + mkdir -p $pkgdir/usr/share/myspell/dicts + cd $pkgdir/usr/share/myspell/dicts + + ln -s /usr/share/hunspell/pt_BR.dic pt_BR.dic + ln -s /usr/share/hunspell/pt_BR.aff pt_BR.aff +} + +md5sums=('47313490f1a21c87b6d5fb5655042e22') diff --git a/social/mednafen-wip/PKGBUILD b/social/mednafen-wip/PKGBUILD new file mode 100755 index 000000000..a405d2ceb --- /dev/null +++ b/social/mednafen-wip/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Hans-Kristian Arntzen <maister@archlinux.us> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: kagan <juanynie@mi.madritel.es> +# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy> + +pkgname=mednafen-wip +pkgver=0.9.21 +pkgrel=1 +pkgdesc="A command-line multi-system gaming emulator, WIP version" +url="http://mednafen.sourceforge.net/" +license=(GPL) +arch=('i686' 'x86_64') +depends=('libcdio>=0.82' 'libsamplerate' 'libogg' 'libvorbis' 'sdl' 'sdl_net' 'libsndfile' 'zlib') +makedepends=('pkgconfig' 'mesa') +conflicts=('mednafen') +provides=('mednafen') +source=('http://forum.fobby.net/index.php?t=getfile&id=358&') +sha1sums=('983c349ca991190363b713ac8abf7ae78b081a21') + +build() +{ + cd $srcdir/mednafen + ./configure --prefix=/usr + make +} + +package() +{ + cd $srcdir/mednafen + make DESTDIR=$pkgdir install +} |