Skip to content

Commit a623b25

Browse files
authored
Merge pull request rust-lang#40 from tones111/arch
Additional Arch dependencies
2 parents 76380be + 3d33d91 commit a623b25

File tree

6 files changed

+58
-0
lines changed

6 files changed

+58
-0
lines changed

packages/arch/autoconf/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!PKGBUILD

packages/arch/autoconf/PKGBUILD

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
pkgname=autoconf-2.64
2+
pkgver=2.64
3+
pkgrel=1
4+
epoch=0
5+
pkgdesc="A GNU tool for automatically configuring source code"
6+
arch=('any')
7+
url="https://www.gnu.org/software/autoconf"
8+
license=('GPL2' 'GPL3')
9+
groups=()
10+
depends=('coreutils' 'awk' 'm4' 'diffutils' 'bash')
11+
makedepends=()
12+
checkdepends=()
13+
optdepends=()
14+
provides=()
15+
conflicts=()
16+
replaces=()
17+
backup=()
18+
options=()
19+
install=
20+
changelog=
21+
source=("http://ftp.gnu.org/gnu/autoconf/autoconf-${pkgver}.tar.gz")
22+
noextract=()
23+
md5sums=('30a198cef839471dd4926e92ab485361')
24+
validpgpkeys=()
25+
26+
prepare() {
27+
cd ${pkgname}
28+
}
29+
30+
build() {
31+
cd ${pkgname}
32+
./configure --prefix=/opt/autoconf/${pkgver}
33+
make
34+
}
35+
36+
check() {
37+
cd "${srcdir}/${pkgname}"
38+
}
39+
40+
package() {
41+
cd "${srcdir}/${pkgname}"
42+
make DESTDIR=${pkgdir} install
43+
}

packages/arch/binutils/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!PKGBUILD
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!PKGBUILD

packages/arch/gcc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!PKGBUILD

packages/arch/newlib/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!PKGBUILD

0 commit comments

Comments
 (0)