blob: 87359ee3ebba918e628145ae6aefc438cafdeeb9 (
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
24
|
#!/bin/bash
name=patch
version=2.7.6
revision=0
sources=(
"https://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}"
}
|