summaryrefslogtreecommitdiffstats
path: root/core/modules/plymouth/module.build
blob: 67b7734eea76df6daaa9a423dafb40cbcbf3bfda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

fetch_source() {
	download_untar "$REQUIRED_URL" "src/"
}

build() {
	cd "src/$REQUIRED_VERSION"
	pinfo "Running configure" 
	./configure --enable-systemd-integration --disable-gtk --disable-static --prefix="$REQUIRED_PREFIX"|| perror "failed."
	pinfo "Running make"
	make || perror "failed"
	pinfo "Running make install" 
	DESTDIR="${MODULE_BUILD_DIR}" make install || perror "failed"
	cd -
}

post_copy() {
	:
}