forked from pool/assimp
86601cd4a4
remove entire models-nonbsd tree OBS-URL: https://build.opensuse.org/request/show/491645 OBS-URL: https://build.opensuse.org/package/show/games/assimp?expand=0&rev=5
8 lines
215 B
Bash
8 lines
215 B
Bash
#!/bin/sh
|
|
p="assimp-3.3.1"
|
|
wget -c "https://github.com/assimp/assimp/archive/v3.3.1/$p.tar.gz"
|
|
rm -Rf "$p"
|
|
tar -xf "$p.tar.gz"
|
|
rm -Rf "$p/test/models-nonbsd"
|
|
tar --owner=root --group=root -czf "$p-suse.tar.gz" "$p"
|