mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-16 17:44:23 +01:00
11 lines
362 B
Makefile
11 lines
362 B
Makefile
install:
|
|
mkdir -p $(DESTDIR)/usr/share/ponies
|
|
cp -r ponies/*.pony $(DESTDIR)/usr/share/ponies/
|
|
install -Dm755 ponysay $(DESTDIR)/usr/bin/ponysay
|
|
ln -s 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
|