diff options
author | Erkin Batu Altunbaş <erkinbatu@gmail.com> | 2012-02-26 19:14:50 +0100 |
---|---|---|
committer | Erkin Batu Altunbaş <erkinbatu@gmail.com> | 2012-02-26 19:14:50 +0100 |
commit | 0e7aca39207cad2e41225bfa36bdee84f2a195b8 (patch) | |
tree | d4a3c778983360db7f10207d6f535a72111c966c | |
parent | 7b75a636b9fbde4b3cc8fdc0ee65e11189dc71e0 (diff) | |
download | ponysay-0e7aca39207cad2e41225bfa36bdee84f2a195b8.tar.gz ponysay-0e7aca39207cad2e41225bfa36bdee84f2a195b8.tar.bz2 ponysay-0e7aca39207cad2e41225bfa36bdee84f2a195b8.zip |
Makefile
-rw-r--r-- | COPYING (renamed from LICENSE) | 2 | ||||
-rw-r--r-- | Makefile | 7 | ||||
-rwxr-xr-x | ponysay | 3 | ||||
-rwxr-xr-x | ponythink | 3 |
4 files changed, 10 insertions, 5 deletions
@@ -10,4 +10,4 @@ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE FUCK YOU WANT TO. + 0. You just DO WHAT THE FUCK YOU WANT TO.
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a0e8e88 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +ponydir=/usr/share/ponies/ +scripts=ponysay ponythink +bindir=/usr/bin/ +install: + mkdir $(ponydir) + cp -r ponies $(ponydir) + cp $(scripts) $(bindir) @@ -1,7 +1,6 @@ #!/usr/bin/env bash export PERL_UNICODE=S - -ponydir=$PWD/ponies +ponydir=/usr/share/ponies function ponyf() { if [[ -f ${ponydir}/${1}.cow ]] ; then @@ -1,7 +1,6 @@ #!/usr/bin/env bash export PERL_UNICODE=S - -ponydir=$PWD/ponies +ponydir=/usr/share/ponies function ponyf() { if [[ -f ${ponydir}/${1}.cow ]] ; then |