blob: e054f03dd48ad93f71e72352ac23b11aaff286b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
install:
mkdir -p $(DESTDIR)/usr/share/ponies
cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay
ln -sf ponysay $(DESTDIR)/usr/bin/ponythink
uninstall:
rm -fr $(DESTDIR)/usr/share/ponies
# cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
rm -f $(DESTDIR)/usr/bin/ponysay
unlink $(DESTDIR)/usr/bin/ponythink
|