mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
- 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
6 lines
130 B
Bash
6 lines
130 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "${2}" = "POST-INSTALL" ]; then
|
|
ln -sf ${PKG_PREFIX}/bin/weechat ${PKG_PREFIX}/bin/weechat-curses
|
|
fi
|