-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathlibtool
More file actions
23 lines (18 loc) · 540 Bytes
/
Copy pathlibtool
File metadata and controls
23 lines (18 loc) · 540 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name=libtool
from_source=libtool
revision=1
hostdeps="autoconf automake"
imagedeps="help2man gcc"
build() {
cp -rp "${source_dir}"/. ./
./configure \
--prefix="${prefix}"
make -j${parallelism}
}
package() {
DESTDIR="${dest_dir}" make install
cp -pv /usr/local/share/autoconf/build-aux/config.sub "${dest_dir}${prefix}"/share/libtool/build-aux/
cp -pv /usr/local/share/autoconf/build-aux/config.guess "${dest_dir}${prefix}"/share/libtool/build-aux/
strip_command=strip \
post_package_strip
}