18 lines
237 B
Plaintext
Executable File
18 lines
237 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::configure() {
|
|
:
|
|
}
|
|
|
|
pbuild::build() {
|
|
:
|
|
}
|
|
|
|
pbuild::install() {
|
|
cd "${SRC_DIR}"
|
|
rsync --exclude=".info" --delete --verbose --archive . "${PREFIX}"
|
|
}
|
|
|
|
pbuild::add_to_group 'Programming'
|
|
pbuild::make_all
|