mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
moved guile/gc/libunistring to [core]
This commit is contained in:
parent
a50b571c1f
commit
31b9b34c96
35
gc/PKGBUILD
35
gc/PKGBUILD
@ -1,35 +0,0 @@
|
||||
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
||||
# Maintainer: Daniel Isenmann <daniel [at] archlinux.org>
|
||||
# Contributor: dorphell <dorphell@gmx.net>
|
||||
|
||||
pkgname=gc
|
||||
pkgver=7.4.0
|
||||
pkgrel=1
|
||||
pkgdesc="A garbage collector for C and C++"
|
||||
arch=('x86_64')
|
||||
url="http://www.hboehm.info/gc/"
|
||||
license=('GPL')
|
||||
source=("http://www.hboehm.info/gc/gc_source/${pkgname}-${pkgver}.tar.gz")
|
||||
depends=('gcc-libs' 'libatomic_ops')
|
||||
md5sums=('f40d9a47c90d60791eeecb484f8df5ee')
|
||||
|
||||
prepare() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
sed -i 's#pkgdata#doc#' doc/doc.am
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
autoreconf -fi
|
||||
./configure --prefix=/usr --enable-cplusplus --disable-static
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
sed -i -e 's/GC_MALLOC 1L/gc 3/' doc/gc.man
|
||||
install -m755 -d "${pkgdir}/usr/share/man/man3"
|
||||
install -m644 doc/gc.man "${pkgdir}/usr/share/man/man3/gc.3"
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
||||
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||||
|
||||
pkgname=guile
|
||||
pkgver=2.0.11
|
||||
pkgrel=1
|
||||
pkgdesc="Guile is a portable, embeddable Scheme implementation written in C"
|
||||
url="http://www.gnu.org/software/guile/"
|
||||
arch=('x86_64')
|
||||
license=('GPL')
|
||||
depends=('gmp' 'libtool' 'ncurses>=5.7' 'texinfo')
|
||||
makedepends=('gc' 'libunistring')
|
||||
install=guile.install
|
||||
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||||
options=('!libtool' '!makeflags')
|
||||
md5sums=('e532c68c6f17822561e3001136635ddd')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
./configure --prefix=/usr --disable-error-on-warning
|
||||
make LDFLAGS+="-lpthread"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
rm -f "${pkgdir}/usr/share/info/dir"
|
||||
gzip "${pkgdir}/usr/share/info"/*
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
diff -Naur guile-1.8.7-orig/scripts/snarf-check-and-output-texi guile-1.8.7/scripts/snarf-check-and-output-texi
|
||||
--- guile-1.8.7-orig/scripts/snarf-check-and-output-texi 2009-07-03 22:19:00.000000000 +0000
|
||||
+++ guile-1.8.7/scripts/snarf-check-and-output-texi 2010-11-20 17:34:34.283333394 +0000
|
||||
@@ -267,6 +267,17 @@
|
||||
(set! *file* file)
|
||||
(set! *line* line))
|
||||
|
||||
+ ;; newer gccs like to throw around more location markers into the
|
||||
+ ;; preprocessed source; these (hash . hash) bits are what they translate to
|
||||
+ ;; in snarfy terms.
|
||||
+ (('location ('string . file) ('int . line) ('hash . 'hash))
|
||||
+ (set! *file* file)
|
||||
+ (set! *line* line))
|
||||
+
|
||||
+ (('location ('hash . 'hash) ('string . file) ('int . line) ('hash . 'hash))
|
||||
+ (set! *file* file)
|
||||
+ (set! *line* line))
|
||||
+
|
||||
(('arglist rest ...)
|
||||
(set! *args* (do-arglist rest)))
|
||||
|
@ -1,27 +0,0 @@
|
||||
files=(goops.info
|
||||
guile-tut.info
|
||||
guile.info
|
||||
guile.info-1
|
||||
guile.info-2
|
||||
guile.info-3
|
||||
guile.info-4
|
||||
guile.info-5
|
||||
guile.info-6
|
||||
guile.info-7
|
||||
r5rs.info)
|
||||
|
||||
post_install() {
|
||||
for f in "${files[@]}"; do
|
||||
install-info usr/share/info/${f}.gz usr/share/info/dir 2>/dev/null
|
||||
done
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
for f in "${files[@]}"; do
|
||||
install-info --delete usr/share/info/${f}.gz usr/share/info/dir 2> /dev/null
|
||||
done
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||||
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Contributor: Emmanuel 'guinness' Boudreault
|
||||
# Contributor: Patrick McCarty <pnorcks at gmail dot com>
|
||||
|
||||
pkgname=libunistring
|
||||
pkgver=0.9.3
|
||||
pkgrel=6
|
||||
pkgdesc="Library for manipulating Unicode strings and C strings."
|
||||
url="http://www.gnu.org/software/libunistring/"
|
||||
arch=('x86_64')
|
||||
license=('GPL')
|
||||
depends=('glibc')
|
||||
install=${pkgname}.install
|
||||
options=('!libtool')
|
||||
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||||
md5sums=('db8eca3b64163abadf8c40e5cecc261f')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
infodir=usr/share/info
|
||||
filelist=(libunistring.info)
|
||||
|
||||
post_install() {
|
||||
[ -x usr/bin/install-info ] || return 0
|
||||
for file in ${filelist[@]}; do
|
||||
install-info $infodir/$file.gz $infodir/dir 2> /dev/null
|
||||
done
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
[ -x usr/bin/install-info ] || return 0
|
||||
for file in ${filelist[@]}; do
|
||||
install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
|
||||
done
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in New Issue
Block a user