mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
172a1a401d
- Pet portlint(1) - whitespace nits in Makefile and pkg-descr - Fix a typo and grammar in pkg-descr - Add pkg-install which creates a symlink for renamed Weechat binary
7 lines
130 B
Bash
7 lines
130 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "${2}" = "POST-INSTALL" ]; then
|
|
ln -sf ${PKG_PREFIX}/bin/weechat ${PKG_PREFIX}/bin/weechat-curses
|
|
fi
|