mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 09:17:15 +08:00
Add truecrypt and fix gcompris-editor desktop
This commit is contained in:
parent
f4128160b2
commit
3f9467de0d
@ -1,6 +1,6 @@
|
||||
pkgname=('gcompris')
|
||||
pkgver=12.11
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="Educational software suite comprising of numerous activities for children aged 2 to 10"
|
||||
arch=('x86_64')
|
||||
url="http://gcompris.net/"
|
||||
@ -25,4 +25,7 @@ build() {
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
# Fix path for editor
|
||||
sed -i -e "~s~gcompris -a~gcompris -l /extra/usr/lib/gcompris/ -a~" ${pkgdir}/extra/usr/share/applications/gcompris-edit.desktop
|
||||
}
|
||||
|
50
truecrypt/PKGBUILD
Normal file
50
truecrypt/PKGBUILD
Normal file
@ -0,0 +1,50 @@
|
||||
# Extra packages for Chakra
|
||||
|
||||
pkgname=truecrypt
|
||||
pkgver=7.1a
|
||||
pkgrel=1
|
||||
epoch=1
|
||||
pkgdesc="Free open-source cross-platform disk encryption software"
|
||||
url="http://www.truecrypt.org/"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('custom') # TrueCrypt License v2.6
|
||||
depends=('fuse>=2.8.0' 'wxgtk>=2.8.9' 'libsm' 'device-mapper' 'filesystem-extra')
|
||||
makedepends=('nasm')
|
||||
optdepends=('sudo: mounting encrypted volumes as nonroot users')
|
||||
conflicts=('truecrypt-utils')
|
||||
replaces=('truecrypt-utils')
|
||||
# N.B. Truecrypt's web-based source download is incompatible with
|
||||
# makepkg. Source has been placed on ftp.archlinux.org instead
|
||||
source=(ftp://ftp.archlinux.org/other/tc/truecrypt-${pkgver}.tar.gz{,.sig} \
|
||||
'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
|
||||
"${pkgname}.desktop" \
|
||||
"${pkgname}-arch-detection.patch")
|
||||
md5sums=('102d9652681db11c813610882332ae48'
|
||||
'5bca3d15b35d0725ff3317e568062ad8'
|
||||
'ce6a707b79411e82e8e558aa03e764b0'
|
||||
'183b9bf04a943454d4e216130bcbac01'
|
||||
'00ea70fa8437de877b31b027ac2b4060')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}-source"
|
||||
|
||||
# Work around buggy CPU type detection
|
||||
patch -Np1 -i ../${pkgname}-arch-detection.patch
|
||||
|
||||
# Build
|
||||
make PKCS11_INC="${srcdir}/pkcs-2.20" LFLAGS+="-ldl"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}-source"
|
||||
|
||||
# Install Binary
|
||||
install -D -m755 Main/${pkgname} "${pkgdir}/extra/usr/bin/${pkgname}"
|
||||
|
||||
# Install Desktop file and Icon
|
||||
install -D -m644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/extra/usr/share/applications/${pkgname}.desktop"
|
||||
install -D -m644 Resources/Icons/TrueCrypt-48x48.xpm "${pkgdir}/extra/usr/share/pixmaps/truecrypt.xpm"
|
||||
|
||||
# Install License
|
||||
install -D -m644 License.txt "${pkgdir}/extra/usr/share/licenses/${pkgname}/License.txt"
|
||||
}
|
15
truecrypt/truecrypt-arch-detection.patch
Normal file
15
truecrypt/truecrypt-arch-detection.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff -urN truecrypt-7.0a-source/Makefile truecrypt-7.0a-source.fixed/Makefile
|
||||
--- truecrypt-7.0a-source/Makefile 2010-09-05 10:32:10.000000000 -0400
|
||||
+++ truecrypt-7.0a-source.fixed/Makefile 2011-07-05 21:41:50.296437879 -0400
|
||||
@@ -120,10 +120,7 @@
|
||||
|
||||
export CPU_ARCH ?= unknown
|
||||
|
||||
-ARCH = $(shell uname -p)
|
||||
-ifeq "$(ARCH)" "unknown"
|
||||
- ARCH = $(shell uname -m)
|
||||
-endif
|
||||
+ARCH = $(shell uname -m)
|
||||
|
||||
ifneq (,$(filter i386 i486 i586 i686 x86,$(ARCH)))
|
||||
CPU_ARCH = x86
|
9
truecrypt/truecrypt.desktop
Normal file
9
truecrypt/truecrypt.desktop
Normal file
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=truecrypt
|
||||
Icon=truecrypt
|
||||
Comment=On-the-fly encryption
|
||||
Terminal=false
|
||||
Name=TrueCrypt
|
||||
StartupNotify=true
|
||||
Categories=System;
|
Loading…
Reference in New Issue
Block a user