16 lines
429 B
Python
16 lines
429 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
|
NoStrip = ["/opt/eagle-9.6.2"]
|
|
|
|
from pisi.actionsapi import get
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
|
|
|
|
def install():
|
|
pisitools.insinto("/opt/eagle-9.6.2", "*")
|
|
pisitools.dosym("/opt/eagle-9.6.2/eagle", "/usr/bin/eagle")
|