Merge remote-tracking branch 'origin/testing' into testing

This commit is contained in:
Fabian 2013-04-24 21:51:19 +00:00
commit 849c6d1873
3 changed files with 40 additions and 4 deletions

View File

@ -1,12 +1,11 @@
# #
# Platform Packages for Chakra, part of chakra-project.org # Platform Packages for Chakra, part of chakra-project.org
# #
# maintainer abveritas[at]chakra-project[dot]org>
pkgname=ntfs-3g pkgname=ntfs-3g
_realname=ntfs-3g_ntfsprogs _realname=ntfs-3g_ntfsprogs
pkgver=2012.1.15 pkgver=2013.1.13
pkgrel=5 pkgrel=1
pkgdesc="Stable read and write NTFS driver" pkgdesc="Stable read and write NTFS driver"
url="http://www.tuxera.com" url="http://www.tuxera.com"
arch=('x86_64') arch=('x86_64')
@ -17,7 +16,7 @@ options=('!libtool')
conflicts=('ntfsprogs') conflicts=('ntfsprogs')
provides=("ntfsprogs=${pkgver}") provides=("ntfsprogs=${pkgver}")
source=("http://www.tuxera.com/opensource/${_realname}-${pkgver}.tgz") source=("http://www.tuxera.com/opensource/${_realname}-${pkgver}.tgz")
sha1sums=('8d55cf49afde172fefa369a0a85289e09c4d7bbb') sha1sums=('8c12b7644d90ae9fb8d0aca0d7ebd5f8fac2c818')
build() { build() {
cd "${srcdir}/${_realname}-${pkgver}" cd "${srcdir}/${_realname}-${pkgver}"

22
ttf-indic-otf/PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Platform packages for Chakra
pkgname=ttf-indic-otf
pkgver=0.2
pkgrel=1
pkgdesc='Indic Opentype Fonts collection'
url='http://www.indlinux.org/wiki/index.php/Downloads'
license=('GPL')
arch=('any')
replaces=('ttf-indic-fonts')
conflicts=('ttf-indic-fonts')
depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 'fontconfig')
source=("http://www.indlinux.org/downloads/files/indic-otf-${pkgver}.tar.gz")
sha1sums=('0f7ae06343a6cc757c20f5eb5b637654146e60a1')
install=install
package() {
cd "${srcdir}"/indic/OpenType
install -d "${pkgdir}"/usr/share/fonts/TTF
install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF
}

15
ttf-indic-otf/install Normal file
View File

@ -0,0 +1,15 @@
post_install() {
echo -n "Updating font cache... "
fc-cache -f > /dev/null
mkfontscale usr/share/fonts/TTF
mkfontdir usr/share/fonts/TTF
echo "done."
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}