Build quilt packages
This commit is contained in:
15
hooks/00-detect-debian-format-prebuild
Executable file
15
hooks/00-detect-debian-format-prebuild
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
source "${TAMARIN_UTIL}"
|
||||
|
||||
if [ -f "debian/source/format" ]; then
|
||||
format=$(cat debian/source/format)
|
||||
case ${format} in
|
||||
"3.0 (native)")
|
||||
set_opt package_format "native"
|
||||
;;
|
||||
"3.0 (quilt)")
|
||||
set_opt package_format "quilt"
|
||||
;;
|
||||
esac
|
||||
fi
|
Reference in New Issue
Block a user