blob: a3c4c6394f0cbd3e996fdf2ec6210adfe13164ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
name=libtool
version=2.4.6
revision=0
sources=(
"http://ftp.gnu.org/gnu/${name}/${name}-${version}.tar.gz"
)
depends=()
function prepare() {
tar xf ${name}-${version}.tar.gz
cd ${name}-${version}
}
function build() {
./configure --prefix="${_prefix}"
make -j${_maxjobs}
}
function package() {
make install DESTDIR="${_pkgdir}"
}
|