1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-07 12:30:47 -07:00
moth/packages/steg/30/Makefile

11 lines
253 B
Makefile

install: file.mp3
cp $< $(DESTDIR)/$$(md5sum $< | awk '{print $$1;}')
file.mp3: src.mp3 text.txt
dd if=$< bs=4 count=1 > $@
dd if=/dev/zero bs=4 count=3 >> $@
m4 KEY="$(shell cat key)" text.txt | zip - - >> $@
cat $< >> $@
clean:
rm -f file.mp3