blob: 11f03c51b497ed2432063454a89f5b72d6e2d4bb (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
make PREFIX=/usr DESTDIR="$1" install
install -Dm644 cpt-base "$1/etc/cpt-base"
install -Dm755 news "$1/usr/bin/cpt-news"
# TODO Remove this on the next release
rm -f "$1/usr/bin/Makefile"
|